From dd81494707015d1507529e6db32927757c400f69 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Mon, 2 Jun 2014 21:51:11 +0200 Subject: [PATCH] adapt to new signature of LogouAbstractModel.get_logout_url() --- authentic2_idp_oauth2/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authentic2_idp_oauth2/__init__.py b/authentic2_idp_oauth2/__init__.py index 5379f28..bce60b7 100644 --- a/authentic2_idp_oauth2/__init__.py +++ b/authentic2_idp_oauth2/__init__.py @@ -27,7 +27,7 @@ class Plugin(object): l = [] for client in qs: name = client.name - url = client.get_logout_url() + url = client.get_logout_url(request) ctx = { 'needs_iframe': client.logout_use_iframe, 'name': name,