diff --git a/fl0w.py b/fl0w.py index a446800..bac79b4 100644 --- a/fl0w.py +++ b/fl0w.py @@ -1,3 +1,4 @@ from sys import path -from os.path import abspath -path.append(abspath("Shared")) \ No newline at end of file +from os.path import abspath, dirname, realpath, join + +path.append(join(abspath(dirname(realpath(__file__))), 'Shared'))