Skip to content

Commit

Permalink
Fix missing paren
Browse files Browse the repository at this point in the history
  • Loading branch information
iansf committed Sep 1, 2015
1 parent 0b96a64 commit 63763ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sky/packages/sky/lib/sky_tool
Original file line number Diff line number Diff line change
Expand Up @@ -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 '
Expand Down

0 comments on commit 63763ab

Please sign in to comment.