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

Unified Diff: tools/dartium/upload_steps.py

Issue 2312253002: Fix syntax error in dartium archiving script (Closed)
Patch Set: Created 4 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dartium/upload_steps.py
diff --git a/tools/dartium/upload_steps.py b/tools/dartium/upload_steps.py
index 0fdac26b091246595f9e91fb58f06aa5b16d8e43..0c3efacd4b9003258608cf984cb5da149bd5f7f8 100755
--- a/tools/dartium/upload_steps.py
+++ b/tools/dartium/upload_steps.py
@@ -67,7 +67,7 @@ class BuildInfo(object):
self.channel = pattern.group(4)
else:
pattern = re.match(BUILDER_PATTERN, self.name)
- assert pattern:
+ assert pattern
self.arch = 'x64' if pattern.group(2) == 'lucid64' else 'ia32'
self.mode = 'Debug' if pattern.group(3) == 'debug' else 'Release'
self.is_incremental = '-inc' in self.name
« 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