summaryrefslogtreecommitdiff
path: root/example_project
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2016-10-28 19:21:41 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2016-10-28 19:21:41 +0200
commit6f80a494ceac19d5db0650a591bf112b09ea2eba (patch)
treebd817bec361eff377bdd7b03b3ac2b37631f8c9d /example_project
parent6435791849e9f386dc150d63c06025148698bb2d (diff)
downloadIshtar-6f80a494ceac19d5db0650a591bf112b09ea2eba.tar.bz2
Ishtar-6f80a494ceac19d5db0650a591bf112b09ea2eba.zip
Too many lazy evaluations and nobody do the job! Fixed.
Diffstat (limited to 'example_project')
-rw-r--r--example_project/settings.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/example_project/settings.py b/example_project/settings.py
index 26119451a..ef52d932a 100644
--- a/example_project/settings.py
+++ b/example_project/settings.py
@@ -237,9 +237,9 @@ except ImportError, e:
if 'test' in sys.argv:
SOUTH_TESTS_MIGRATE = False
-if USE_SPATIALITE_FOR_TESTS:
- DATABASES['default']['ENGINE'] = \
- 'django.contrib.gis.db.backends.spatialite'
+ if USE_SPATIALITE_FOR_TESTS:
+ DATABASES['default']['ENGINE'] = \
+ 'django.contrib.gis.db.backends.spatialite'
PROJECT_SLUG = locals().get('PROJECT_SLUG', 'default')