diff --git a/eopayment/__init__.py b/eopayment/__init__.py index 8132acb..ad98297 100644 --- a/eopayment/__init__.py +++ b/eopayment/__init__.py @@ -16,7 +16,7 @@ DUMMY = 'dummy' def get_backend(kind): '''Resolve a backend name into a module object''' - module = __import__(kind) + module = __import__(kind, globals(), locals(), [], -1) return module.Payment class Payment(object):