comment out most of the fluff in pyfa.py. Need to come back to this and get it all working

This commit is contained in:
Ryan Holmes
2017-06-12 16:37:15 -04:00
parent 828b18d0fd
commit 7f392006d1
3 changed files with 149 additions and 153 deletions

View File

@@ -47,7 +47,7 @@ def __createDirs(path):
def getPyfaRoot():
base = getattr(sys.modules['__main__'], "__file__", sys.executable) if isFrozen() else sys.argv[0]
root = os.path.dirname(os.path.realpath(os.path.abspath(base)))
root = str(root, sys.getfilesystemencoding())
root = root
return root