mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-08 14:34:01 -06:00
Use double quotes
As per our code style.
This commit is contained in:
parent
96896088c3
commit
afd3ce205a
1 changed files with 5 additions and 5 deletions
10
cura_app.py
10
cura_app.py
|
@ -12,14 +12,14 @@ from UM.Platform import Platform
|
|||
|
||||
parser = argparse.ArgumentParser(prog = "cura",
|
||||
add_help = False)
|
||||
parser.add_argument('--debug',
|
||||
action='store_true',
|
||||
parser.add_argument("--debug",
|
||||
action="store_true",
|
||||
default = False,
|
||||
help = "Turn on the debug mode by setting this option."
|
||||
)
|
||||
parser.add_argument('--trigger-early-crash',
|
||||
dest = 'trigger_early_crash',
|
||||
action = 'store_true',
|
||||
parser.add_argument("--trigger-early-crash",
|
||||
dest = "trigger_early_crash",
|
||||
action = "store_true",
|
||||
default = False,
|
||||
help = "FOR TESTING ONLY. Trigger an early crash to show the crash dialog."
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue