Mercurial > hg
changeset 26874:853154f27525
unbundle: gratuitous fix white spacing "issue"
We were missing one space on this block.
author | Pierre-Yves David <pierre-yves.david@fb.com> |
---|---|
date | Sat, 07 Nov 2015 16:03:09 -0500 |
parents | 1cbf144fd8a1 |
children | cf47bdb2183c |
files | mercurial/commands.py |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- 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()