I had another couple of thoughts.

In the manage.py shell, try:

    from openid.yadis import xri
    xri

The output will include from where it got xri.  Make sure that it's
coming from your lib directory, and not from some old system wide
installation of openid.


Instead of:

    from openid.association import Association as OIDAssociation

try:

    from association import Association as OIDAssociation


Also, expecially if the previous worked, in your settings.py, instead of:

    sys.path.append(os.path.join(FILE_ROOT, 'lib', 'openid'))

try

    sys.path.append(os.path.join(FILE_ROOT, 'lib'))

Bill

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to