Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Karl Pietrowski <thopiekar@googlemail.com>2017-12-09 04:52:51 +0300
committerThomas Karl Pietrowski <thopiekar@googlemail.com>2017-12-09 04:52:51 +0300
commit63acaed0a5439d05c46c43b6f6db1ac105d1805a (patch)
tree8bf5077b894a023081e92ca5e249dc5f26d09526 /cura_app.py
parent2614c8a623155ce3b257d22fc9d95d108b18a2d9 (diff)
Correcting if clause
We don't want logs, when debugging.
Diffstat (limited to 'cura_app.py')
-rwxr-xr-xcura_app.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cura_app.py b/cura_app.py
index a09b5b07dc..627583d384 100755
--- a/cura_app.py
+++ b/cura_app.py
@@ -17,7 +17,7 @@ parser.add_argument('--debug',
known_args, unknown_args = parser.parse_known_args()
known_args = vars(known_args)
-if known_args["debug"]:
+if not known_args["debug"]:
def get_cura_dir_path():
if Platform.isWindows():
return os.path.expanduser("~/AppData/Roaming/cura/")