[PATCH 1 of 2] clone: fix over-indented continuation line

Sean Farley sean at farley.io
Thu Sep 24 23:08:06 UTC 2015


# HG changeset patch
# User Sean Farley <sean at farley.io>
# Date 1443134843 25200
#      Thu Sep 24 15:47:23 2015 -0700
# Node ID d19a61caa7c7abb23316df0458954403f2176b13
# Parent  b80b2ee71a08d00ec4008f3131bdf3c72e4ec2ba
clone: fix over-indented continuation line

diff --git a/mercurial/hg.py b/mercurial/hg.py
--- a/mercurial/hg.py
+++ b/mercurial/hg.py
@@ -593,11 +593,11 @@ def clone(ui, peeropts, source, dest=Non
                         bn = destrepo[uprev].branch()
                         if bn == 'default':
                             status = _("updating to bookmark @\n")
                         else:
                             status = (_("updating to bookmark @ on branch %s\n")
-                                       % bn)
+                                      % bn)
                     except KeyError:
                         try:
                             uprev = destrepo.branchtip('default')
                         except error.RepoLookupError:
                             uprev = destrepo.lookup('tip')


More information about the Mercurial-devel mailing list