Submitter | phabricator |
---|---|
Date | April 1, 2022, 4:47 p.m. |
Message ID | <differential-rev-PHID-DREV-bfaqknuuuhxtmw3be3n2-req@mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/50773/ |
State | New |
Headers | show |
Comments
Patch
diff --git a/mercurial/dispatch.py b/mercurial/dispatch.py --- a/mercurial/dispatch.py +++ b/mercurial/dispatch.py @@ -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,