Merge pull request #241 from Jaxkr/master

Fixed capitalization of "Application Support"
This commit is contained in:
Jonathan Warren 2013-06-24 20:58:47 -07:00
commit befe790334
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -116,7 +116,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()