From 90240af80f40068a639509ecc3cef14d22557abb Mon Sep 17 00:00:00 2001 From: Lipu Fei Date: Tue, 5 Sep 2017 07:54:20 +0200 Subject: [PATCH] Correct stdout and stderr redirect location on Mac --- cura_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura_app.py b/cura_app.py index 2e406f99d3..ef9190a1fe 100755 --- a/cura_app.py +++ b/cura_app.py @@ -60,7 +60,7 @@ def get_cura_dir_path(): elif Platform.isLinux(): return os.path.expanduser("~/.local/share/cura") elif Platform.isOSX(): - return os.path.expanduser("~/Library/Application Support/cura") + return os.path.expanduser("~/Library/Logs/cura") if hasattr(sys, "frozen"):