From 82a66e962656b4029124c8b991449c7723b70806 Mon Sep 17 00:00:00 2001 From: Serghei MIHAI Date: Thu, 5 Mar 2015 11:40:45 +0100 Subject: [PATCH] ozwillo logout url casted to string --- ckanext/ozwillo_pyoidc/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ckanext/ozwillo_pyoidc/plugin.py b/ckanext/ozwillo_pyoidc/plugin.py index 48cd69a..a621b31 100755 --- a/ckanext/ozwillo_pyoidc/plugin.py +++ b/ckanext/ozwillo_pyoidc/plugin.py @@ -192,5 +192,5 @@ class OpenidController(base.BaseController): logout_url += 'post_logout_redirect_uri=%s' % redirect_uri for cookie in request.cookies: response.delete_cookie(cookie) - redirect_to(logout_url) + redirect_to(str(logout_url)) redirect_to(org_url)