commit 95ac4a3f2824ef53732c85aee12b035aec44ac6a
parent 76cfc43794418f96522f4c14bb9e885ba1fe8ab8
Author: ThomasV <thomasv1@gmx.de>
Date: Sun, 20 Jan 2013 13:17:15 -0800
Merge pull request #120 from kyuupichan/master
Support installation on NetBSD
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lib/util.py b/lib/util.py
@@ -87,7 +87,8 @@ def appdata_dir():
elif platform.system() == "Linux":
return os.path.join(sys.prefix, "share", "electrum")
elif (platform.system() == "Darwin" or
- platform.system() == "DragonFly"):
+ platform.system() == "DragonFly" or
+ platform.system() == "NetBSD"):
return "/Library/Application Support/Electrum"
else:
raise Exception("Unknown system")