From patchwork Tue May 27 00:20:40 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: exchange: fix indentation level From: Pierre-Yves David X-Patchwork-Id: 4866 Message-Id: To: mercurial-devel@selenic.com Cc: pierre-yves.david@ens-lyon.org Date: Mon, 26 May 2014 17:20:40 -0700 # HG changeset patch # User Pierre-Yves David # 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())