Skip to content

Commit

Permalink
Merge pull request #148 from asmeurer/set_trace-no_continue
Browse files Browse the repository at this point in the history
Don't call set_continue() in set_trace()
  • Loading branch information
inducer committed Jun 20, 2015
2 parents 7dd4d33 + 7d0283d commit 46337e9
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 46337e9

Please sign in to comment.