mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-06-04 11:14:21 +08:00
Correcting if clause
We don't want logs, when debugging.
This commit is contained in:
parent
2614c8a623
commit
63acaed0a5
@ -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/")
|
||||
|
Loading…
x
Reference in New Issue
Block a user