[PATCH] exchange: fix indentation level

pierre-yves.david at ens-lyon.org pierre-yves.david at ens-lyon.org
Mon May 26 19:20:40 CDT 2014


# HG changeset patch
# User Pierre-Yves David <pierre-yves.david at fb.com>
# Date 1400791195 25200
#      Thu May 22 13:39:55 2014 -0700
# Node ID c5346e482b1f7b33fcddce131b8f44b3fe98a396
# Parent  41e1922963546136d647d9dd43d3a20730b5527d
exchange: fix indentation level

diff --git a/mercurial/exchange.py b/mercurial/exchange.py
--- a/mercurial/exchange.py
+++ b/mercurial/exchange.py
@@ -622,12 +622,12 @@ def _pullchangeset(pullop):
                                      heads=pullop.heads or pullop.rheads)
     elif pullop.heads is None:
         cg = pullop.remote.changegroup(pullop.fetch, 'pull')
     elif not pullop.remote.capable('changegroupsubset'):
         raise util.Abort(_("partial pull cannot be done because "
-                                   "other repository doesn't support "
-                                   "changegroupsubset."))
+                           "other repository doesn't support "
+                           "changegroupsubset."))
     else:
         cg = pullop.remote.changegroupsubset(pullop.fetch, pullop.heads, 'pull')
     pullop.cgresult = changegroup.addchangegroup(pullop.repo, cg, 'pull',
                                                  pullop.remote.url())
 


More information about the Mercurial-devel mailing list