Bugfix in tools/build.py: Error -> Exception rename
Review URL: https://codereview.chromium.org//11440014 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@15770 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
+1
-1
@@ -189,7 +189,7 @@ def Execute(args):
|
||||
process = subprocess.Popen(args)
|
||||
process.wait()
|
||||
if process.returncode != 0:
|
||||
raise Error(args[0] + " failed")
|
||||
raise Exception(args[0] + " failed")
|
||||
|
||||
|
||||
def GClientRunHooks():
|
||||
|
||||
Reference in New Issue
Block a user