From e5d97cf8ffc6bc1be45c46254d478c405de53623 Mon Sep 17 00:00:00 2001 From: kakwa Date: Tue, 28 Jul 2015 20:32:46 +0200 Subject: [PATCH] making Backend skeleton a child class of object this enables the use of super() --- ldapcherry/backend/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ldapcherry/backend/__init__.py b/ldapcherry/backend/__init__.py index 77a6ed1..c352aa8 100644 --- a/ldapcherry/backend/__init__.py +++ b/ldapcherry/backend/__init__.py @@ -8,7 +8,7 @@ from ldapcherry.exceptions import MissingParameter -class Backend: +class Backend(object): def __init__(self, config, logger, name, attrslist, key): """ Initialize the backend