This repository has been archived on 2025-06-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
fl0w-old/fl0w.py
Christoph Heiss 048042d1b1 Fix appending of the 'Shared'-folder to the python search path.
It assumed that 'Shared' was in the current working directory, which
may not be always true.
2017-03-01 21:48:13 +01:00

4 lines
141 B
Python

from sys import path
from os.path import abspath, dirname, realpath, join
path.append(join(abspath(dirname(realpath(__file__))), 'Shared'))