fisheye-experimental / scripts /project_subpath.py
oskarastrom's picture
Compatability with backend
128e4f0
raw
history blame contribute delete
223 Bytes
import sys
import os
current_dir = os.path.dirname(os.path.realpath(__file__))
pardir = os.path.dirname(current_dir)
for d in [pardir, current_dir]:
if d not in sys.path:
sys.path.append(d)
import project_path