1
0
mirror of https://github.com/kakwa/ldapcherry synced 2024-11-22 17:34:21 +01:00

making Backend skeleton a child class of object

this enables the use of super()
This commit is contained in:
kakwa 2015-07-28 20:32:46 +02:00
parent 27fca43ac6
commit e5d97cf8ff

View File

@ -8,7 +8,7 @@
from ldapcherry.exceptions import MissingParameter from ldapcherry.exceptions import MissingParameter
class Backend: class Backend(object):
def __init__(self, config, logger, name, attrslist, key): def __init__(self, config, logger, name, attrslist, key):
""" Initialize the backend """ Initialize the backend