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

Unified Diff: gclient_scm.py

Issue 218016: gclient_scm: fix one more case where revision stores an int (Closed)
Patch Set: Created 11 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: gclient_scm.py
diff --git a/gclient_scm.py b/gclient_scm.py
index df76188bf1e16cc6132fc0c15f563716d1abc748..b9ede9b96e11bbd7f51e85d5a69cf5bb5dd2b5e3 100644
--- a/gclient_scm.py
+++ b/gclient_scm.py
@@ -163,7 +163,7 @@ class SVNWrapper(SCMWrapper):
# Retrieve the current HEAD version because svn is slow at null updates.
if not revision:
from_info_live = CaptureSVNInfo(from_info['URL'], '.')
- revision = from_info_live['Revision']
+ revision = str(from_info_live['Revision'])
rev_str = ' at %s' % revision
if from_info['URL'] != components[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