Browse Source

Correcting if clause

We don't want logs, when debugging.
Thomas Karl Pietrowski 7 years ago
parent
commit
63acaed0a5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cura_app.py

+ 1 - 1
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/")