Skip to content

Commit

Permalink
Merge pull request #5624 from benjaoming/fix-control-panel-central
Browse files Browse the repository at this point in the history
Fix a typo in decorator pattern
  • Loading branch information
Benjamin Balder Bach authored Dec 3, 2019
2 parents 64fe3fd + 4437ff0 commit 3d698ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kalite/shared/decorators/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def blank_wrapper(fn):
if settings.CENTRAL_SERVER:
return blank_wrapper

return lambda *a,**kw: decorator(*a **kw)
return lambda *a,**kw: decorator(*a, **kw)


def get_user_from_request(handler=None, request=None, *args, **kwargs):
Expand Down

0 comments on commit 3d698ec

Please sign in to comment.