mercurial/dispatch.py
changeset 49073 12adf8c695ed
parent 49037 642e31cb55f0
parent 48823 91a60031aba2
child 49312 48f1b314056b
--- 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,