diff options
author | Étienne Loks <etienne.loks@proxience.com> | 2015-12-23 12:32:01 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@proxience.com> | 2015-12-23 12:32:01 +0100 |
commit | b3b9a7e7fbcace5e5151f86b3f9ac5dacb2ca613 (patch) | |
tree | f51aefc29c15b7da4f388f5d3c16494c59314a74 | |
parent | 42e7df97c3deb20316ff6e785111a94232d880dc (diff) | |
download | Ishtar-b3b9a7e7fbcace5e5151f86b3f9ac5dacb2ca613.tar.bz2 Ishtar-b3b9a7e7fbcace5e5151f86b3f9ac5dacb2ca613.zip |
One missing separator and where done with the ROOT_PATH
-rw-r--r-- | example_project/settings.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/example_project/settings.py b/example_project/settings.py index d9337c4b6..3df329228 100644 --- a/example_project/settings.py +++ b/example_project/settings.py @@ -17,12 +17,12 @@ CACHE_SMALLTIMEOUT = 120 CACHE_TIMEOUT = 3600 CACHE_BACKEND = 'memcached://127.0.0.1:11211/' -ROOT_PATH = os.path.sep.join( - os.path.abspath(__file__).split(os.path.sep)[:-1]) +SEP = os.path.sep +ROOT_PATH = SEP.join( + os.path.abspath(__file__).split(SEP)[:-1]) + SEP STATIC_URL = '/static/' STATIC_ROOT = ROOT_PATH + 'static/' BASE_URL = "/" - URL_PATH = "" ODT_TEMPLATE = ROOT_PATH + "../ishtar_common/static/template.odt" |