Skip to content

Commit

Permalink
Don't call set_continue() in set_trace()
Browse files Browse the repository at this point in the history
Fixes #147.
  • Loading branch information
asmeurer committed Jun 20, 2015
1 parent f390f25 commit 7d0283d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pudb/debugger.py
Expand Up @@ -225,7 +225,7 @@ def set_trace(self, frame=None, as_breakpoint=True):
self.set_step()
sys.settrace(self.trace_dispatch)
else:
self.set_continue()
return

def save_breakpoints(self):
from pudb.settings import save_breakpoints
Expand Down

0 comments on commit 7d0283d

Please sign in to comment.