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

This commit is contained in:
Christophe Simonis 2014-12-12 14:59:58 +01:00
parent fd92f16801
commit 68134d38a3
1 changed files with 1 additions and 0 deletions

View File

@ -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;