Fix exception message in get_drt.py

Exception threw an exception when the command failed!

Review URL: https://chromereviews.googleplex.com/3559014

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@229 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
zundel@google.com 2011-10-07 15:31:49 +00:00
parent 96303f1dab
commit d82c272940

View file

@ -47,7 +47,7 @@ def execute_command_visible(*cmd):
result = subprocess.call(cmd, stdout=sys.stdout, stderr=sys.stderr,
stdin=sys.stdin)
if result != 0:
raise Exception('Execution of "%s" failed' % cmd)
raise Exception('Execution of "%s" failed' % ' '.join(cmd))
def gsutil(*cmd):