From af9dbda5d37321e1a5472208e4c69c5fa5ce0a7e Mon Sep 17 00:00:00 2001 From: Jaxkr Date: Fri, 21 Jun 2013 12:26:33 -0600 Subject: [PATCH] Fixed capitalization of Application Support, which causes problems for people with a case sensitive OS X file system --- src/shared.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared.py b/src/shared.py index 256008c1..031585a0 100644 --- a/src/shared.py +++ b/src/shared.py @@ -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()