##// END OF EJS Templates
py3: use stringutil.pprint() to prevent b'' prefixes in output...
Pulkit Goyal -
r38122:b0144fc8 default
parent child Browse files
Show More
@@ -288,8 +288,8 b' def _runcatch(req):'
288 288 req.args[2] != 'serve' or
289 289 req.args[3] != '--stdio'):
290 290 raise error.Abort(
291 _('potentially unsafe serve --stdio invocation: %r') %
292 (req.args,))
291 _('potentially unsafe serve --stdio invocation: %s') %
292 (stringutil.pprint(req.args),))
293 293
294 294 try:
295 295 debugger = 'pdb'
General Comments 0
You need to be logged in to leave comments. Login now