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

Unified Diff: build/android/gyp/util/build_utils.py

Issue 328343005: Fix python build util script exception (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 6 months 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: build/android/gyp/util/build_utils.py
diff --git a/build/android/gyp/util/build_utils.py b/build/android/gyp/util/build_utils.py
index fa8592bd03e92d3043c03334eedb892da95dccc1..a33afb5c59049a2c78e0e6cfb7f5b38f7fb81e67 100644
--- a/build/android/gyp/util/build_utils.py
+++ b/build/android/gyp/util/build_utils.py
@@ -170,9 +170,9 @@ def IsDeviceReady():
def CheckZipPath(name):
if os.path.normpath(name) != name:
- raise Exception('Non-canonical zip path: %s, %s' % name)
+ raise Exception('Non-canonical zip path: %s' % name)
if os.path.isabs(name):
- raise Exception('Absolute zip path: %s, %s' % name)
+ raise Exception('Absolute zip path: %s' % name)
def ExtractAll(zip_path, path=None, no_clobber=True):
« 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