From 9a868fc875e852d80824af69140f7c27a77df2bd Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Wed, 29 Nov 2017 03:01:12 +0100 Subject: [PATCH] Remove extra pusher attribute on consumer side --- runbullet/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runbullet/__init__.py b/runbullet/__init__.py index 49889480..4a3f1780 100644 --- a/runbullet/__init__.py +++ b/runbullet/__init__.py @@ -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])