jason
jason

Reputation: 3075

Django No module named path.to

using django-allauth when trying to load the url /social/connections/ I get the following error.

Error during template rendering

In template /Users/user/Documents/workspace/iFetch/templates/socialaccount/snippets/login_extra.html, error at line 3
No module named path.to
1   {% load socialaccount %}
2   
3   {% providers_media_js %}
4   
5   

what does this mean, how can I fix or what I have missed?

Thanks

Upvotes: 4

Views: 2824

Answers (1)

Daniel Roseman
Daniel Roseman

Reputation: 599956

path.to.something is a shorthand in documentation for "replace this with whatever your actual path is to the module". You've probably copied something verbatim, without replacing it with your actual path.

Upvotes: 8

Related Questions