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

Unified Diff: tools/create_tarball.py

Issue 1147643002: Don't assume integer revision in linux distribution scripts (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/create_tarball.py
diff --git a/tools/create_tarball.py b/tools/create_tarball.py
index 66479ddd8d13c5dc98cd4a4ee192aa671b8d2ad6..73d8bb855ec8593464e9e452144a4e4ea831ced8 100755
--- a/tools/create_tarball.py
+++ b/tools/create_tarball.py
@@ -104,7 +104,7 @@ def GenerateChangeLog(filename, version):
def GenerateSvnRevision(filename, svn_revision):
with open(filename, 'w') as f:
- f.write(svn_revision)
+ f.write(str(svn_revision))
def CreateTarball(tarfilename):
« 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