diff --git a/dotbot/dispatcher.py b/dotbot/dispatcher.py index 1fac1ad..d1a4f95 100644 --- a/dotbot/dispatcher.py +++ b/dotbot/dispatcher.py @@ -27,8 +27,8 @@ class Dispatcher(object): # keep going, let other plugins handle this if they want for plugin in self._plugins: if plugin.can_handle(action): - success &= plugin.handle(action, task[action]) try: + success &= plugin.handle(action, task[action]) handled = True except Exception as err: self._log.error(