From dd7fb952d7dfb6e0d02009e5f50928cb91a9b734 Mon Sep 17 00:00:00 2001 From: Daniel Greenfeld Date: Fri, 16 Aug 2013 20:52:30 +0200 Subject: [PATCH] fix allauth --- .../{{cookiecutter.repo_name}}/config/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/config/settings.py b/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/config/settings.py index 17d3d5d3..ce53dac6 100644 --- a/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/config/settings.py +++ b/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/config/settings.py @@ -194,7 +194,7 @@ INSTALLED_APPS += ( # South and allauth 'allauth', # registration 'allauth.account', # registration - # 'allauth.socialaccount', # registration + 'allauth.socialaccount', # registration ) ########## END APP CONFIGURATION