summaryrefslogtreecommitdiffstats
path: root/settings.py
diff options
context:
space:
mode:
authorsubstantialnoninfringinguser <substantialnoninfringinguser@gmail.com>2009-05-14 06:39:36 +0100
committersubstantialnoninfringinguser <substantialnoninfringinguser@gmail.com>2009-05-14 06:39:36 +0100
commit06487e5534a5334a11f3a7fba62fc714b434f701 (patch)
treec66cc131308200fe9c9b9921f00e85a872e8aae4 /settings.py
parentc0b73d4777fad30b57de96b71656a61ad972eb9d (diff)
downloadtroggle-06487e5534a5334a11f3a7fba62fc714b434f701.tar.gz
troggle-06487e5534a5334a11f3a7fba62fc714b434f701.tar.bz2
troggle-06487e5534a5334a11f3a7fba62fc714b434f701.zip
[svn] localsettings should override settings, so the import should be at the bottom of the file, unless someone has a better way of doing this
Diffstat (limited to 'settings.py')
-rw-r--r--settings.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/settings.py b/settings.py
index 4a6fa34..6b878ee 100644
--- a/settings.py
+++ b/settings.py
@@ -1,4 +1,3 @@
-from localsettings import *
import os
import urlparse
# Django settings for troggle project.
@@ -88,3 +87,5 @@ INSTALLED_APPS = (
'troggle.expo',
'troggle.imagekit',
)
+
+from localsettings import * \ No newline at end of file