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

Unified Diff: tools/dartium/buildbot_annotated_steps.py

Issue 1135403003: Do not assume integer for version in dartium annotated steps (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 7 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/buildbot_annotated_steps.py
diff --git a/tools/dartium/buildbot_annotated_steps.py b/tools/dartium/buildbot_annotated_steps.py
index 17fbc882b1fdd0c79d35800e23b8057bfd480036..26c993c5b130ff6bc67011a72985d8cdb72a5442 100755
--- a/tools/dartium/buildbot_annotated_steps.py
+++ b/tools/dartium/buildbot_annotated_steps.py
@@ -81,7 +81,7 @@ def main():
os.path.join('tools', 'utils.py'))
dart_revision = dart_tools_utils.GetSVNRevision()
- version = dart_revision + '.0'
+ version = '%s.0' % dart_revision
info = upload_steps.BuildInfo(dart_revision, version)
result = 0
« 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