mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 06:57:28 -06:00
Correcting if clause
We don't want logs, when debugging.
This commit is contained in:
parent
2614c8a623
commit
63acaed0a5
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ parser.add_argument('--debug',
|
||||||
known_args, unknown_args = parser.parse_known_args()
|
known_args, unknown_args = parser.parse_known_args()
|
||||||
known_args = vars(known_args)
|
known_args = vars(known_args)
|
||||||
|
|
||||||
if known_args["debug"]:
|
if not known_args["debug"]:
|
||||||
def get_cura_dir_path():
|
def get_cura_dir_path():
|
||||||
if Platform.isWindows():
|
if Platform.isWindows():
|
||||||
return os.path.expanduser("~/AppData/Roaming/cura/")
|
return os.path.expanduser("~/AppData/Roaming/cura/")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue