diff options
author | Dan McGee <dan@archlinux.org> | 2012-04-20 10:21:28 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-04-20 11:15:03 -0500 |
commit | d21d8be0186413fe1fa5fd6c859786465472ee10 (patch) | |
tree | 2309796163078af30b05f340dbe0e816a92f6a84 /settings.py | |
parent | c1ccc88d0769afc16363ceb06e5bdcd8605455bf (diff) |
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 <dan@archlinux.org>
Diffstat (limited to 'settings.py')
-rw-r--r-- | settings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings.py b/settings.py index 10dc48e2..a4800c92 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 = ( |