##// END OF EJS Templates
py3: handle keyword arguments correctly in dispatch.py...
Pulkit Goyal -
r35355:08f28f58 default
parent child Browse files
Show More
@@ -200,7 +200,8 b' def dispatch(req):'
200 req.ui.flush()
200 req.ui.flush()
201 if req.ui.logblockedtimes:
201 if req.ui.logblockedtimes:
202 req.ui._blockedtimes['command_duration'] = duration * 1000
202 req.ui._blockedtimes['command_duration'] = duration * 1000
203 req.ui.log('uiblocked', 'ui blocked ms', **req.ui._blockedtimes)
203 req.ui.log('uiblocked', 'ui blocked ms',
204 **pycompat.strkwargs(req.ui._blockedtimes))
204 req.ui.log("commandfinish", "%s exited %d after %0.2f seconds\n",
205 req.ui.log("commandfinish", "%s exited %d after %0.2f seconds\n",
205 msg, ret or 0, duration)
206 msg, ret or 0, duration)
206 try:
207 try:
General Comments 0
You need to be logged in to leave comments. Login now