From 59f4e8ede82078b406045d1321d725bd5c6091ff Mon Sep 17 00:00:00 2001 From: rajbot Date: Wed, 10 Apr 2013 21:39:10 -0700 Subject: [PATCH] Fix typeo when calling os.environ in the sys.platform=='darwin' case. --- messages.dat reader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messages.dat reader.py b/messages.dat reader.py index 252d71f4..c91755c7 100644 --- a/messages.dat reader.py +++ b/messages.dat reader.py @@ -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()