summaryrefslogtreecommitdiff
path: root/example_project
diff options
context:
space:
mode:
Diffstat (limited to 'example_project')
-rwxr-xr-xexample_project/manage.py6
-rw-r--r--example_project/settings.py1
2 files changed, 4 insertions, 3 deletions
diff --git a/example_project/manage.py b/example_project/manage.py
index 8a126f72d..8cce5c4b2 100755
--- a/example_project/manage.py
+++ b/example_project/manage.py
@@ -1,7 +1,9 @@
#!/usr/bin/python
from django.core.management import execute_manager
-import sys
-sys.path.append('/home/nim/Work/geo-django-fla/')
+
+import os, sys
+sys.path.append(os.path.abspath('..'))
+
try:
import settings # Assumed to be in the same directory.
except ImportError:
diff --git a/example_project/settings.py b/example_project/settings.py
index 328068837..2825f717e 100644
--- a/example_project/settings.py
+++ b/example_project/settings.py
@@ -24,7 +24,6 @@ STATIC_ROOT = ROOT_PATH + 'static/'
BASE_URL = "/"
URL_PATH = ""
-XHTML2ODT_PATH = "/usr/local/lib/"
ODT_TEMPLATE = ROOT_PATH + "../ishtar_common/static/template.odt"