2008/4/7 Chris Curvey <[EMAIL PROTECTED]>: > > I decided to install the trunk version of AuthKit into my Pylons app > last night (in the hopes that it had solved another issue), but that > seems to have been a mistake. Now every time I try to login to my > site, I'm getting > > AssertionError: Attempt to set headers a second time w/o an exc_info > > I then tried to downgrade to AuthKit 0.4.0, but that is giving me a > version conflict for something OpenID -related. (Event thought I'm not > using OpenID.) > > I'll rip out my authentication so that I can keep working, but can > anyone give me a pointer on how to track down what this problem is? >
Authkit install a dependant library for openid functionality, even if you don't use it. You must downgrade python-openid. Version 1.1 or 1.2 if you use AuthKit-0.4.0 ---- $ grep openid python2.5/site-packages/AuthKit-0.4.0-py2.5.egg/EGG-INFO/requires.txt python-openid>=1.1,<=1.2 ---- Take a look to virtualenv http://pypi.python.org/pypi/virtualenv It's good for preserve the python system packages clean, sandboxed instalations and deployment tests ;-) Reggards: Javi PD: Excuse my poor english. > -Chris > > P.S. I'm using AuthKit with the Elixir instructions found at the > bottom of > http://wiki.pylonshq.com/display/pysbook/Authentication+and+Authorization > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en -~----------~----~----~----~------~----~------~--~---
