handlers check for 'applications' folder

This commit is contained in:
mdipierro
2013-08-27 16:57:54 -05:00
committed by Michele Comitini
parent 72b3092ef6
commit 13c782eaa6
9 changed files with 32 additions and 4 deletions

View File

@@ -34,6 +34,10 @@ from mod_python import apache
path = os.path.dirname(os.path.abspath(__file__))
os.chdir(path)
if not os.path.exists('applications'):
raise RuntimeError('Running from the wrong folder')
sys.path = [path] + [p for p in sys.path if not p == path]
import gluon.main