Fixed capitalization of Application Support, which causes problems for people with a case sensitive OS X file system

This commit is contained in:
Jaxkr 2013-06-21 12:26:33 -06:00
parent 958cf03cd8
commit af9dbda5d3
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ def lookupAppdataFolder():
from os import path, environ
if sys.platform == 'darwin':
if "HOME" in environ:
dataFolder = path.join(os.environ["HOME"], "Library/Application support/", APPNAME) + '/'
dataFolder = path.join(os.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()