exists to isdir, thanks Niphlod

This commit is contained in:
mdipierro
2013-08-27 17:18:27 -05:00
parent cc0014f42a
commit a626c213a7
8 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ from mod_python import apache
path = os.path.dirname(os.path.abspath(__file__))
os.chdir(path)
if not os.path.exists('applications'):
if not os.path.isdir('applications'):
raise RuntimeError('Running from the wrong folder')
sys.path = [path] + [p for p in sys.path if not p == path]