diff options
Diffstat (limited to 'tasker/plugins.py')
| -rw-r--r-- | tasker/plugins.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tasker/plugins.py b/tasker/plugins.py index eca96b4..2c479df 100644 --- a/tasker/plugins.py +++ b/tasker/plugins.py @@ -146,8 +146,6 @@ class Plugin(object): self._state = self.cflow[state][result] return self._state except KeyError: - import pdb - pdb.set_trace() raise InvalidFlowStateException(self.cflow) # @@ -168,7 +166,7 @@ class Plugin(object): raise StopIteration() else: # Execute the function. - self._result = getattr(self, func)() + getattr(self, func)() return (self._state, self._result) # |
