| 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
|
|
|