Commit 2b1f00b0 authored by Ian Fischer's avatar Ian Fischer

Fix missing paren

parent 0d7e90d5
......@@ -955,7 +955,7 @@ class StopTracing(object):
cmd = [ADB_PATH, 'root']
logging.info(' '.join(cmd))
output = subprocess.check_output(cmd)
match = re.match(r'.*cannot run as root.*', output
match = re.match(r'.*cannot run as root.*', output)
if match is not None:
logging.error('Unable to download trace file %s\n'
'You need to be able to run adb as root '
......
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