Skip to content

Commit

Permalink
Merge pull request #32 from grota/fix_continuous_mode
Browse files Browse the repository at this point in the history
Continuous mode: parse option as an int
  • Loading branch information
joonty committed Jan 8, 2013
2 parents bc982e4 + 285068b commit 06924a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/python/vdebug/runner.py
Expand Up @@ -79,7 +79,7 @@ def refresh(self,status):
self.ui.statuswin.set_status("stopped")
self.ui.say("Debugging session has ended")
self.close_connection(False)
if vdebug.opts.Options.get('continuous_mode',bool):
if vdebug.opts.Options.get('continuous_mode', int) != 0:
self.open()
return
else:
Expand Down

0 comments on commit 06924a6

Please sign in to comment.