forked from platypush/platypush
Remove extra pusher attribute on consumer side
This commit is contained in:
parent
8d32426554
commit
9a868fc875
1 changed files with 1 additions and 1 deletions
|
@ -136,7 +136,7 @@ def get_backends(config):
|
||||||
) + 'Backend'
|
) + 'Backend'
|
||||||
|
|
||||||
# Ignore the pusher attribute here
|
# Ignore the pusher attribute here
|
||||||
if 'pusher' in config: del config['pusher']
|
if 'pusher' in config[k]: del config[k]['pusher']
|
||||||
|
|
||||||
try:
|
try:
|
||||||
b = getattr(module, cls_name)(config[k])
|
b = getattr(module, cls_name)(config[k])
|
||||||
|
|
Loading…
Reference in a new issue