Bomb on deleting a temporary breakpoint: there's no method

do_delete(); do_clear() was meant.  By Greg Ward.
This commit is contained in:
Guido van Rossum 1998-11-18 15:56:06 +00:00
parent 3fe1b14c96
commit 691d27a7ae
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ class Bdb: # Basic Debugger
if bp:
self.currentbp = bp.number
if (flag and bp.temporary):
self.do_delete(str(bp.number))
self.do_clear(str(bp.number))
return 1
else:
return 0