Msencenb
Msencenb

Reputation: 5104

No module named registration.forms in django-facebook

I'm using the django-facebook library (https://github.com/tschellenbach/Django-facebook) for authentication using Facebook.

However, when I go to the sample template to test registrations at /facebook/connect and try to connect, I get an ImportError:

No module named registration.forms

Does anybody know what this error is about?

Upvotes: 1

Views: 875

Answers (1)

Danica
Danica

Reputation: 28846

You probably need to install django-registration.

Upvotes: 1

Related Questions