Fix path tweak for test project's manage.py

This commit is contained in:
Stephen McDonald 2012-07-11 17:38:43 +10:00
parent f6d7bd139c
commit 93082055c4

View File

@ -2,7 +2,7 @@
import sys
import os
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '../..'))
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..'))
from django.core.management import execute_manager
import imp