mirror of
1
0
Fork 0

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
1 changed files with 1 additions and 1 deletions

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: