Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Karl Pietrowski <thopiekar@googlemail.com>2017-12-10 00:26:52 +0300
committerThomas Karl Pietrowski <thopiekar@googlemail.com>2017-12-10 00:26:52 +0300
commitbcc31fb19b378eb2f024ef194b4324a0a0d2baa3 (patch)
tree048dce3184c0c7754dbd2233067930d84cc92dd4 /cura_app.py
parent8e89c1b36144d4861f58093de15b6f2a480964c8 (diff)
Tell early parser not to add help
Diffstat (limited to 'cura_app.py')
-rwxr-xr-xcura_app.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/cura_app.py b/cura_app.py
index af4e1f2a48..56ae51aaa3 100755
--- a/cura_app.py
+++ b/cura_app.py
@@ -9,7 +9,8 @@ import sys
from UM.Platform import Platform
-parser = argparse.ArgumentParser(prog = "cura")
+parser = argparse.ArgumentParser(prog = "cura",
+ add_help = False)
parser.add_argument('--debug',
action='store_true',
default = False,