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

Unified Diff: gclient_scm.py

Issue 225022: Fix gclient breakage cause by r26940. (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 fe0ac9839794dd5651f6d985340c65f2c464247c..df76188bf1e16cc6132fc0c15f563716d1abc748 100644
--- a/gclient_scm.py
+++ b/gclient_scm.py
@@ -212,7 +212,7 @@ class SVNWrapper(SCMWrapper):
# If the provided url has a revision number that matches the revision
# number of the existing directory, then we don't need to bother updating.
- if not options.force and from_info['Revision'] == revision:
+ if not options.force and str(from_info['Revision']) == revision:
if options.verbose or not forced_revision:
print("\n_____ %s%s" % (self.relpath, rev_str))
return
« 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