mirror of
https://github.com/kakwa/ldapcherry
synced 2025-07-15 14:08:31 +02:00
Merge pull request #24 from jqueuniet/fix_default_handler
Fix default handler arguments
This commit is contained in:
commit
856157af79
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue