diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2020-07-08 11:51:48 +0300 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2020-07-13 22:23:44 +0200 |
commit | bd96a6f7b7eb103f97bcd6eadc21908187e94dce (patch) | |
tree | c4ace9ff4cab817915c9b00496a79e83ea2f7a34 /bin/test-hid-vs-ui.py | |
parent | a3c3ab7394f578340c33e6e1cd8da13196a8b596 (diff) |
Don't rely on Python's treatment of unrecognized escape sequences
According to [1]:
> Changed in version 3.6: Unrecognized escape sequences produce a DeprecationWarning.
> In a future Python version they will be a SyntaxWarning and eventually a SyntaxError.
[1] https://docs.python.org/3/reference/lexical_analysis.html#string-and-bytes-literals
Change-Id: Ia4f79f17ccb121f423f35b1e1306d5ae285e8762
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98321
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'bin/test-hid-vs-ui.py')
-rwxr-xr-x | bin/test-hid-vs-ui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/test-hid-vs-ui.py b/bin/test-hid-vs-ui.py index 635a121ad1d1..ac3321649927 100755 --- a/bin/test-hid-vs-ui.py +++ b/bin/test-hid-vs-ui.py @@ -58,7 +58,7 @@ def init_core_files(): elif not args['git_static']: subprocess.call(['git','fetch','origin']) allfiles = subprocess.check_output(['git','ls-tree','--name-only','--full-name','-r','master']) - return re.findall('.*\.ui',allfiles) + return re.findall(r'.*\.ui',allfiles) if __name__ == "__main__": |