From 97196190d612699420f67a142bf33875adb2d854 Mon Sep 17 00:00:00 2001 From: Thomas Karl Pietrowski Date: Sat, 9 Dec 2017 12:04:53 +0100 Subject: [PATCH] cura_app: Adding help text for debug --- cura_app.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cura_app.py b/cura_app.py index 9167829754..118ea97c30 100755 --- a/cura_app.py +++ b/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)