Browse Source

Tell early parser not to add help

Thomas Karl Pietrowski 7 years ago
parent
commit
bcc31fb19b
1 changed files with 2 additions and 1 deletions
  1. 2 1
      cura_app.py

+ 2 - 1
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,