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

Unified Diff: gce/uploader_helper.py

Issue 1351373003: [chrome-devtools-frontend] Use full Chromium checkout (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/chrome-devtools-frontend
Patch Set: Created 5 years, 3 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 | gce/uploader_iteration.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gce/uploader_helper.py
diff --git a/gce/uploader_helper.py b/gce/uploader_helper.py
index e7f71d25b6bab63d87567743a6270b644de7a70b..889a4918387926bc9844eff4126c5c08dec10029 100755
--- a/gce/uploader_helper.py
+++ b/gce/uploader_helper.py
@@ -27,7 +27,7 @@ def FindProjectRevision(project_name):
global_scope = { 'Var': var.Lookup, 'deps': {} }
exec(deps_content, global_scope, local_scope)
project_path = local_scope['deps'][project_name]
- match = re.search('r[^@]*@(\d+)', project_path)
+ match = re.search('r[^@]*@([0-9a-f]+)', project_path)
if match:
return match.group(1)
return project_path
« no previous file with comments | « no previous file | gce/uploader_iteration.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698