Browse Source

cura_app: Adding help text for debug

Thomas Karl Pietrowski 7 years ago
parent
commit
97196190d6
1 changed files with 3 additions and 1 deletions
  1. 3 1
      cura_app.py

+ 3 - 1
cura_app.py

@@ -12,7 +12,9 @@ from UM.Platform import Platform
 parser = argparse.ArgumentParser(prog = "cura")
 parser.add_argument('--debug',
                     action='store_true',
-                    default = False
+                    default = False,
+                    help="Turn on the debug mode by setting this option."
+                    )
                     )
 known_args, unknown_args = parser.parse_known_args()
 known_args = vars(known_args)