##// END OF EJS Templates
blackbox: fix exception when logging commands with format characters...
Durham Goode -
r18758:6aca4d1c default
parent child Browse files
Show More
@@ -737,7 +737,7 b' def _dispatch(req):'
737 ui.warn(_("warning: --repository ignored\n"))
737 ui.warn(_("warning: --repository ignored\n"))
738
738
739 msg = ' '.join(' ' in a and repr(a) or a for a in fullargs)
739 msg = ' '.join(' ' in a and repr(a) or a for a in fullargs)
740 ui.log("command", msg + "\n")
740 ui.log("command", '%s\n', msg)
741 d = lambda: util.checksignature(func)(ui, *args, **cmdoptions)
741 d = lambda: util.checksignature(func)(ui, *args, **cmdoptions)
742 starttime = time.time()
742 starttime = time.time()
743 ret = None
743 ret = None
General Comments 0
You need to be logged in to leave comments. Login now