Meh, shoot from hip

This commit is contained in:
Mike A. Trethewey
2020-03-04 02:22:32 -08:00
parent dd1a3d416f
commit 85587848d6

View File

@@ -77,7 +77,7 @@ def output_path(path):
NSUserDomainMask = 1
# True for expanding the tilde into a fully qualified path
documents = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, True)[0]
elif sys.platform.find("linux"):
elif sys.platform.find("linux") or sys.platform.find("ubuntu") or sys.platform.find("unix"):
documents = os.path.join("~","Documents")
else:
raise NotImplementedError('Not supported yet')