From c2998045cc19b7b4fd960375c53acc2aa390467a Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Fri, 8 Feb 2008 21:50:09 +0100 Subject: [PATCH] * Remove the absolute path from the import script. --- import.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/import.py b/import.py index d1d5e42..1e77c90 100644 --- a/import.py +++ b/import.py @@ -1,7 +1,7 @@ import sys import os -sys.path = sys.path + ['/home/matthijs/docs/src/django'] +sys.path = sys.path + [os.path.dirname(os.path.dirname(os.path.abspath(__file__)))] os.environ['DJANGO_SETTINGS_MODULE']='ee.settings' import MySQLdb -- 2.30.2