Added DragonFly to platform checks in appdata_dir() for mac.

This commit is contained in:
Amir Taaki 2012-07-08 10:45:04 +01:00
parent b0b24ae9dd
commit c03705b2a5
1 changed files with 2 additions and 1 deletions

View File

@ -14,7 +14,8 @@ def appdata_dir():
return os.path.join(os.environ["APPDATA"], "Electrum")
elif platform.system() == "Linux":
return os.path.join(sys.prefix, "share", "electrum")
elif platform.system() == "Darwin":
elif (platform.system() == "Darwin" or
platform.system() == "DragonFly"):
return "/Library/Application Support/Electrum"
else:
raise Exception("Unknown system")