branch | stable |
changeset 48998 | 91a60031aba2 |
parent 48256 | 56d037d07395 |
child 49005 | 12adf8c695ed |
--- a/mercurial/dispatch.py Fri Jul 23 13:42:12 2021 +0530 +++ b/mercurial/dispatch.py Fri Apr 01 12:46:58 2022 -0400 @@ -287,7 +287,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: @@ -326,7 +326,7 @@ req.ui.log( b"commandfinish", b"%s exited %d after %0.2f seconds\n", - msg, + formattedargs, return_code, duration, return_code=return_code,