From d21d8be0186413fe1fa5fd6c859786465472ee10 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Fri, 20 Apr 2012 10:21:28 -0500 Subject: UserProfile model and fields shuffle Move this model into the devel/ application, and move the PGPKeyField which is used only by these models into the application as well. This involves updating some old migrations along the way to ensure we don't reference a field class that no longer exists. Signed-off-by: Dan McGee --- settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'settings.py') diff --git a/settings.py b/settings.py index 10dc48e..a4800c9 100644 --- a/settings.py +++ b/settings.py @@ -43,7 +43,7 @@ LOGIN_URL = '/login/' LOGIN_REDIRECT_URL = '/' # Set django's User stuff to use our profile model -AUTH_PROFILE_MODULE = 'main.UserProfile' +AUTH_PROFILE_MODULE = 'devel.UserProfile' # We add a processor to determine if the request is secure or not TEMPLATE_CONTEXT_PROCESSORS = ( -- cgit v1.2.3-24-g4f1b