Changeset 171

Show
Ignore:
Timestamp:
11/19/08 12:43:52
Author:
thejimmyg
Message:

Fixed #50, OpenID problem

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • AuthKit/trunk/CHANGELOG.txt

    r170 r171  
    440.4.3 
    55 
     6* Fixed #50 OpenID problem and tested on blogger.com 
    67* Added the ability to pass the environ dictionary to render() functions 
    78* Added bad cookie customisation options to fix #65 but also to allow 
  • AuthKit/trunk/authkit/authenticate/open_id.py

    r159 r171  
    361361        params = dict(paste.request.parse_querystring(environ)) 
    362362        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        ) 
    364368 
    365369        if info.status == consumer.FAILURE and info.identity_url: