# HG changeset patch # User Pierre-Yves David # Date 1446930189 18000 # Node ID 853154f27525d46e62016095e36776a2f41908ea # Parent 1cbf144fd8a170b2a5e2a7f68357368c5793d7a4 unbundle: gratuitous fix white spacing "issue" We were missing one space on this block. diff -r 1cbf144fd8a1 -r 853154f27525 mercurial/commands.py --- a/mercurial/commands.py Thu Nov 05 18:56:40 2015 -0800 +++ b/mercurial/commands.py Sat Nov 07 16:03:09 2015 -0500 @@ -6578,10 +6578,10 @@ tr.close() except error.BundleUnknownFeatureError as exc: raise error.Abort(_('%s: unknown bundle feature, %s') - % (fname, exc), - hint=_("see https://mercurial-scm.org/" - "wiki/BundleFeature for more " - "information")) + % (fname, exc), + hint=_("see https://mercurial-scm.org/" + "wiki/BundleFeature for more " + "information")) finally: if tr: tr.release()