Skip to content
Snippets Groups Projects
Commit 68134d38 authored by Christophe Simonis's avatar Christophe Simonis
Browse files

[FIX] auth_oauth: ignore "debug" argument when converting fragment to query string

parent fd92f168
No related branches found
No related tags found
No related merge requests found
......@@ -24,6 +24,7 @@ _logger = logging.getLogger(__name__)
def fragment_to_query_string(func):
@functools.wraps(func)
def wrapper(self, *a, **kw):
kw.pop('debug', False)
if not kw:
return """<html><head><script>
var l = window.location;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment