diff options
author | Magnus Hagander | 2016-01-06 15:33:27 +0000 |
---|---|---|
committer | Magnus Hagander | 2016-01-06 15:33:27 +0000 |
commit | b14b34c40d3614871bf5ca258964920bb37dfdbd (patch) | |
tree | 54931f89e865f149ef2815bff4bfb44e41e9a191 /pgcommitfest/settings.py | |
parent | dcdbe85712536953fbd0a694441b2c1613ba3ef1 (diff) |
Fully qualify imports
Diffstat (limited to 'pgcommitfest/settings.py')
-rw-r--r-- | pgcommitfest/settings.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pgcommitfest/settings.py b/pgcommitfest/settings.py index f33c71b..d1af235 100644 --- a/pgcommitfest/settings.py +++ b/pgcommitfest/settings.py @@ -125,10 +125,10 @@ INSTALLED_APPS = ( 'django.contrib.admin', # Uncomment the next line to enable admin documentation: # 'django.contrib.admindocs', - 'selectable', - 'commitfest', - 'mailqueue', - 'userprofile', + 'pgcommitfest.selectable', + 'pgcommitfest.commitfest', + 'pgcommitfest.mailqueue', + 'pgcommitfest.userprofile', ) # A sample logging configuration. The only tangible logging |