diff --git a/runbullet/__init__.py b/runbullet/__init__.py index 8b158391b6..49889480a1 100644 --- a/runbullet/__init__.py +++ b/runbullet/__init__.py @@ -135,6 +135,9 @@ def get_backends(config): (module.__name__.title().split('.')[2:]) ) + 'Backend' + # Ignore the pusher attribute here + if 'pusher' in config: del config['pusher'] + try: b = getattr(module, cls_name)(config[k]) backends.append(b)