##// END OF EJS Templates
dispatch: don't attempt to import debugger as bytestring...
Jordi Gutiérrez Hermoso -
r52271:82131be5 default
parent child Browse files
Show More
@@ -413,7 +413,7 b' def _runcatch(req):'
413 413 # debugging has been requested
414 414 with demandimport.deactivated():
415 415 try:
416 debugmod = __import__(debugger)
416 debugmod = __import__(pycompat.sysstr(debugger))
417 417 except ImportError:
418 418 pass # Leave debugmod = pdb
419 419
General Comments 0
You need to be logged in to leave comments. Login now