##// END OF EJS Templates
py3: use %d instead of %s for integers...
Pulkit Goyal -
r32130:c3dcec6c default
parent child Browse files
Show More
@@ -183,7 +183,7 b' def dispatch(req):'
183 if req.ui.logblockedtimes:
183 if req.ui.logblockedtimes:
184 req.ui._blockedtimes['command_duration'] = duration * 1000
184 req.ui._blockedtimes['command_duration'] = duration * 1000
185 req.ui.log('uiblocked', 'ui blocked ms', **req.ui._blockedtimes)
185 req.ui.log('uiblocked', 'ui blocked ms', **req.ui._blockedtimes)
186 req.ui.log("commandfinish", "%s exited %s after %0.2f seconds\n",
186 req.ui.log("commandfinish", "%s exited %d after %0.2f seconds\n",
187 msg, ret or 0, duration)
187 msg, ret or 0, duration)
188 try:
188 try:
189 req._runexithandlers()
189 req._runexithandlers()
General Comments 0
You need to be logged in to leave comments. Login now