diff --git a/ldapcherry/__init__.py b/ldapcherry/__init__.py index 33b2063..2a6a15a 100644 --- a/ldapcherry/__init__.py +++ b/ldapcherry/__init__.py @@ -243,7 +243,7 @@ class LdapCherry(object): elif self.auth_mode == 'custom': # load custom auth module auth_module = self._get_param('auth', 'auth.module', config) - auth = __import__(auth_module, globals(), locals(), ['Auth'], -1) + auth = __import__(auth_module, globals(), locals(), ['Auth'], 0) self.auth = auth.Auth(config['auth'], cherrypy.log) else: raise WrongParamValue(