Fix typeo when calling os.environ in the sys.platform=='darwin' case.
This commit is contained in:
parent
bd09bd5580
commit
59f4e8ede8
|
@ -10,7 +10,7 @@ APPNAME = "PyBitmessage"
|
|||
from os import path, environ
|
||||
if sys.platform == 'darwin':
|
||||
if "HOME" in environ:
|
||||
appdata = path.join(os.environ["HOME"], "Library/Application support/", APPNAME) + '/'
|
||||
appdata = path.join(environ["HOME"], "Library/Application support/", APPNAME) + '/'
|
||||
else:
|
||||
print 'Could not find home folder, please report this message and your OS X version to the BitMessage Github.'
|
||||
sys.exit()
|
||||
|
|
Loading…
Reference in New Issue
Block a user