Files
mhapi/db/_pathfix.py
2015-04-02 22:52:46 -05:00

12 lines
251 B
Python

"""
Hack to get scripts to run from source checkout without having to set
PYTHONPATH.
"""
import sys
from os.path import dirname, join, abspath
db_path = dirname(__file__)
project_path = abspath(join(db_path, ".."))
sys.path.insert(0, project_path)