Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Unified Diff: tools/build.py

Issue 11440014: Bugfix in tools/build.py: Error -> Exception rename (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/build.py
diff --git a/tools/build.py b/tools/build.py
index c3f0449ed74121e235d3df9529bf86a982978a7d..a1a6c54789172c186faf8a5220f5791f21b3c067 100755
--- a/tools/build.py
+++ b/tools/build.py
@@ -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():
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698