##// END OF EJS Templates
Backport PR #9953: corrected split with rsplit...
Matthias Bussonnier -
Show More
@@ -437,7 +437,7 b' python-profiler package from non-free.""")'
437 437
438 438 def _debug_exec(self, code, breakpoint):
439 439 if breakpoint:
440 (filename, bp_line) = breakpoint.split(':', 1)
440 (filename, bp_line) = breakpoint.rsplit(':', 1)
441 441 bp_line = int(bp_line)
442 442 else:
443 443 (filename, bp_line) = (None, None)
General Comments 0
You need to be logged in to leave comments. Login now