diff options
author | Brian Behlendorf <[email protected]> | 2018-10-24 23:26:08 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2018-10-24 23:26:08 -0700 |
commit | b74f48fe1b15b4958da35413edd89060df7a1c30 (patch) | |
tree | e772d24c4024bc9d61c96cab6b2f41ea431c25e2 /tests | |
parent | b3d7725c943292df72fa6812177f912bc58b302d (diff) |
Fix flake8 "invalid escape sequence 'x'" warning
From, https://lintlyci.github.io/Flake8Rules/rules/W605.html
As of Python 3.6, a backslash-character pair that is not a valid
escape sequence now generates a DeprecationWarning. Although this
will eventually become a SyntaxError, that will not be for several
Python releases.
Note 'float_pobj' was simply removed from arcstat.py since it
was entirely unused.
Reviewed-by: John Kennedy <[email protected]>
Reviewed-by: Richard Elling <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #8056
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/test-runner/bin/zts-report.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/test-runner/bin/zts-report.py b/tests/test-runner/bin/zts-report.py index efee5d989..8b58950b8 100755 --- a/tests/test-runner/bin/zts-report.py +++ b/tests/test-runner/bin/zts-report.py @@ -292,9 +292,10 @@ def process_results(pathname): sys.exit(1) prefix = '/zfs-tests/tests/functional/' - pattern = '^Test:\s*\S*%s(\S+)\s*\(run as (\S+)\)\s*\[(\S+)\]\s*\[(\S+)\]'\ + pattern = \ + r'^Test:\s*\S*%s(\S+)\s*\(run as (\S+)\)\s*\[(\S+)\]\s*\[(\S+)\]' \ % prefix - pattern_log = '^\s*Log directory:\s*(\S*)' + pattern_log = r'^\s*Log directory:\s*(\S*)' d = {} for l in f.readlines(): |