Add missing "return" statements in exception handler.
This commit is contained in:
parent
ae04106a0e
commit
b27831887f
|
@ -480,6 +480,7 @@ class Pdb(bdb.Bdb, cmd.Cmd):
|
|||
# something went wrong
|
||||
print >>self.stdout, \
|
||||
'Breakpoint index %r is not a number' % args[0]
|
||||
return
|
||||
try:
|
||||
cond = args[1]
|
||||
except:
|
||||
|
@ -500,6 +501,7 @@ class Pdb(bdb.Bdb, cmd.Cmd):
|
|||
# something went wrong
|
||||
print >>self.stdout, \
|
||||
'Breakpoint index %r is not a number' % args[0]
|
||||
return
|
||||
try:
|
||||
count = int(args[1].strip())
|
||||
except:
|
||||
|
|
Loading…
Reference in New Issue