Added DragonFly to platform checks in appdata_dir() for mac.
This commit is contained in:
@@ -14,7 +14,8 @@ def appdata_dir():
|
|||||||
return os.path.join(os.environ["APPDATA"], "Electrum")
|
return os.path.join(os.environ["APPDATA"], "Electrum")
|
||||||
elif platform.system() == "Linux":
|
elif platform.system() == "Linux":
|
||||||
return os.path.join(sys.prefix, "share", "electrum")
|
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"
|
return "/Library/Application Support/Electrum"
|
||||||
else:
|
else:
|
||||||
raise Exception("Unknown system")
|
raise Exception("Unknown system")
|
||||||
|
|||||||
Reference in New Issue
Block a user