black my mortal enemy. thank you for changing one line maybe
This commit is contained in:
parent
9253a6fcff
commit
7b1fdeb62e
1 changed files with 5 additions and 3 deletions
|
@ -10,6 +10,7 @@ except ImportError:
|
|||
|
||||
DATADIR = None
|
||||
|
||||
|
||||
def isOSX():
|
||||
return sys.platform == "darwin"
|
||||
|
||||
|
@ -84,10 +85,10 @@ def getDataDir():
|
|||
# This means that anytime its called during runtime after init will just return a lie. it will just give you a different path
|
||||
# (Because the Application now has a Name which in turn makes it return an application-name-specific writableLocation, which pchum isnt expecting anywhere)
|
||||
# so
|
||||
# here im caching the result at init & returning that
|
||||
# here im caching the result at init & returning that
|
||||
# seemed like the safest way to do this without breaking half of this program
|
||||
return DATADIR
|
||||
|
||||
|
||||
try:
|
||||
if isOSX():
|
||||
return os.path.join(
|
||||
|
@ -114,4 +115,5 @@ def getDataDir():
|
|||
print(e)
|
||||
return ""
|
||||
|
||||
DATADIR = getDataDir()
|
||||
|
||||
DATADIR = getDataDir()
|
||||
|
|
Loading…
Reference in a new issue