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

Unified Diff: tools/utils.py

Issue 2540383003: Don't store git commit in observatory version string (Closed)
Patch Set: Don't store git commit in observatory version string Created 4 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 | « tools/observatory_tool.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/utils.py
diff --git a/tools/utils.py b/tools/utils.py
index 51a3a036d58e6e6bd7102336db2b79ece538e093..341321dd6dcce48cd6782862d7404e53a1be6076 100644
--- a/tools/utils.py
+++ b/tools/utils.py
@@ -316,8 +316,8 @@ def GetSemanticSDKVersion(ignore_svn_revision=False):
return '%s.%s.%s%s' % (version.major, version.minor, version.patch, postfix)
-def GetVersion():
- return GetSemanticSDKVersion()
+def GetVersion(ignore_svn_revision=False):
+ return GetSemanticSDKVersion(ignore_svn_revision)
# The editor used to produce the VERSION file put on gcs. We now produce this
# in the bots archiving the sdk.
« no previous file with comments | « tools/observatory_tool.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698