Mercurial > public > mercurial-scm > hg
diff mercurial/dispatch.py @ 49005:12adf8c695ed
merge: stable into default
author | Rapha?l Gom?s <rgomes@octobus.net> |
---|---|
date | Tue, 05 Apr 2022 11:09:03 +0200 |
parents | 642e31cb55f0 91a60031aba2 |
children | 48f1b314056b |
line wrap: on
line diff
--- a/mercurial/dispatch.py Wed Mar 30 00:57:08 2022 -0400 +++ b/mercurial/dispatch.py Tue Apr 05 11:09:03 2022 +0200 @@ -269,7 +269,7 @@ ferr.write(inst.format()) return -1 - msg = _formatargs(req.args) + formattedargs = _formatargs(req.args) starttime = util.timer() ret = 1 # default of Python exit code on unhandled exception try: @@ -308,7 +308,7 @@ req.ui.log( b"commandfinish", b"%s exited %d after %0.2f seconds\n", - msg, + formattedargs, return_code, duration, return_code=return_code,