From 0a96ca61d541cf2cd76c29a811b82914764e43fc Mon Sep 17 00:00:00 2001 From: Johann Queuniet Date: Tue, 26 Mar 2019 11:05:39 +0100 Subject: [PATCH] Fix default handler arguments --- ldapcherry/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ldapcherry/__init__.py b/ldapcherry/__init__.py index a948574..4a3b584 100644 --- a/ldapcherry/__init__.py +++ b/ldapcherry/__init__.py @@ -1170,7 +1170,7 @@ class LdapCherry(object): @cherrypy.expose @exception_decorator - def default(self, attr='', **params): + def default(self, attr='', *args, **params): cherrypy.response.status = 404 self._check_auth(must_admin=False) is_admin = self._check_admin()