Submitter | Durham Goode |
---|---|
Date | March 1, 2013, 2:33 a.m. |
Message ID | <6980c9cc2eb4ee69a530.1362105222@dev350.prn1.facebook.com> |
Download | mbox | patch |
Permalink | /patch/1063/ |
State | Superseded |
Commit | 6aca4d1c744ed8f6c1305525ded7590abaa72d06 |
Headers | show |
Comments
Patch
diff --git a/mercurial/dispatch.py b/mercurial/dispatch.py --- a/mercurial/dispatch.py +++ b/mercurial/dispatch.py @@ -737,7 +737,7 @@ ui.warn(_("warning: --repository ignored\n")) msg = ' '.join(' ' in a and repr(a) or a for a in fullargs) - ui.log("command", msg + "\n") + ui.log("command", '%s\n', msg) d = lambda: util.checksignature(func)(ui, *args, **cmdoptions) starttime = time.time() ret = None