Remove extra pusher attribute on consumer side

This commit is contained in:
Fabio Manganiello 2017-11-29 03:01:12 +01:00
parent 8d32426554
commit 9a868fc875
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ def get_backends(config):
) + 'Backend'
# Ignore the pusher attribute here
if 'pusher' in config: del config['pusher']
if 'pusher' in config[k]: del config[k]['pusher']
try:
b = getattr(module, cls_name)(config[k])