12 lines
230 B
Python
12 lines
230 B
Python
#!/usr/bin/env python
|
|
|
|
import sys
|
|
import os
|
|
|
|
INTERP = os.path.expanduser("~/env/bin/python")
|
|
if sys.executable != INTERP:
|
|
os.execl(INTERP, INTERP, *sys.argv)
|
|
|
|
sys.path.append(os.getcwd())
|
|
|
|
from james import app as application
|