From 94080ea3a622203bc272e45a47b7a68f6e6d5f6b Mon Sep 17 00:00:00 2001 From: Jesse Leite Date: Sun, 6 Oct 2019 18:48:49 -0400 Subject: [PATCH] Restore try logic in dispatcher. --- dotbot/dispatcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(