From 67ebe10c60c18217b19a5d9ac8bbcd2a0b20b199 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Sun, 15 Jul 2018 02:57:12 +0200 Subject: [PATCH] typo --- platypush/context/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platypush/context/__init__.py b/platypush/context/__init__.py index 3b1c1e10c4..31f6f6d16f 100644 --- a/platypush/context/__init__.py +++ b/platypush/context/__init__.py @@ -56,7 +56,7 @@ def get_backend(name): """ Returns the backend instance identified by name if it exists """ global backends - return backends.get('name') + return backends.get(name) def get_plugin(plugin_name, reload=False):