1
0
Fork 0
mirror of synced 2024-06-15 21:51:10 -04:00

dotbot: dispatcher: fix typo

Signed-off-by: Andreas Schmidt <mail@schmidt-andreas.de>
This commit is contained in:
Andreas Schmidt 2020-02-18 18:10:12 +01:00
parent 58160cb1f3
commit 3ebc25f2be
No known key found for this signature in database
GPG key ID: FEE0A611BEA6DEA0

View file

@ -31,7 +31,7 @@ class Dispatcher(object):
success &= plugin.handle(action, task[action])
if action == 'plugins':
self._load_plugins()
self._log.lowinfo('Plugin list have been update')
self._log.lowinfo('Plugin list have been updated')
self._log.info('New plugin list: %s' % [type(plugin).__name__ for plugin in self._plugins])
handled = True
except Exception as err: