Commit eda430ca authored by Michael Droettboom's avatar Michael Droettboom

Use raw string to pass linter

parent 8412fa26
...@@ -108,7 +108,7 @@ def handle_command(line, args): ...@@ -108,7 +108,7 @@ def handle_command(line, args):
for arg in line: for arg in line:
if r'/file.c' in arg or '_configtest' in arg: if r'/file.c' in arg or '_configtest' in arg:
return return
if re.match('/tmp/.*/source\.[bco]+', arg): if re.match(r'/tmp/.*/source\.[bco]+', arg):
return return
if arg == '-print-multiarch': if arg == '-print-multiarch':
return return
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment