From 5062aa93abc9a8d6f90837db690c26ace1c68672 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Wed, 13 Jan 2010 00:08:16 +0000 Subject: [PATCH] aargh, temporary hack fix to a nasty problem --- django_openid/consumer.py | 2 ++ setup.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/django_openid/consumer.py b/django_openid/consumer.py index 8a0bb3a..48fa0b5 100644 --- a/django_openid/consumer.py +++ b/django_openid/consumer.py @@ -212,6 +212,8 @@ def get_on_complete_url(self, request, on_complete_url=None): on_complete_url = on_complete_url or self.on_complete_url or \ (request.path + 'complete/') on_complete_url = self.ensure_absolute_url(request, on_complete_url) + return on_complete_url + if self.sign_next_param: try: next = signed.loads( diff --git a/setup.py b/setup.py index a2ebfe1..d19f63e 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='django-openid', - version='0.1.4', + version='0.1.5', description='OpenID tools for Django', author='Simon Willison', author_email='simon@simonwillison.net',