Changeset 171
- Timestamp:
- 11/19/08 12:43:52
- Files:
-
- AuthKit/trunk/CHANGELOG.txt (modified) (1 diff)
- AuthKit/trunk/authkit/authenticate/open_id.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
AuthKit/trunk/CHANGELOG.txt
r170 r171 4 4 0.4.3 5 5 6 * Fixed #50 OpenID problem and tested on blogger.com 6 7 * Added the ability to pass the environ dictionary to render() functions 7 8 * Added bad cookie customisation options to fix #65 but also to allow AuthKit/trunk/authkit/authenticate/open_id.py
r159 r171 361 361 params = dict(paste.request.parse_querystring(environ)) 362 362 oidconsumer = self._get_consumer(environ) 363 info = oidconsumer.complete(dict(params), params['openid.return_to']) 363 # Fixes #50 364 info = oidconsumer.complete( 365 dict(params), 366 params.get('openid.return_to') 367 ) 364 368 365 369 if info.status == consumer.FAILURE and info.identity_url:
