mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 18:49:02 +08:00
Use double quotes
As per our code style.
This commit is contained in:
parent
96896088c3
commit
afd3ce205a
10
cura_app.py
10
cura_app.py
@ -12,14 +12,14 @@ from UM.Platform import Platform
|
|||||||
|
|
||||||
parser = argparse.ArgumentParser(prog = "cura",
|
parser = argparse.ArgumentParser(prog = "cura",
|
||||||
add_help = False)
|
add_help = False)
|
||||||
parser.add_argument('--debug',
|
parser.add_argument("--debug",
|
||||||
action='store_true',
|
action="store_true",
|
||||||
default = False,
|
default = False,
|
||||||
help = "Turn on the debug mode by setting this option."
|
help = "Turn on the debug mode by setting this option."
|
||||||
)
|
)
|
||||||
parser.add_argument('--trigger-early-crash',
|
parser.add_argument("--trigger-early-crash",
|
||||||
dest = 'trigger_early_crash',
|
dest = "trigger_early_crash",
|
||||||
action = 'store_true',
|
action = "store_true",
|
||||||
default = False,
|
default = False,
|
||||||
help = "FOR TESTING ONLY. Trigger an early crash to show the crash dialog."
|
help = "FOR TESTING ONLY. Trigger an early crash to show the crash dialog."
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user