From bcc31fb19b378eb2f024ef194b4324a0a0d2baa3 Mon Sep 17 00:00:00 2001 From: Thomas Karl Pietrowski Date: Sat, 9 Dec 2017 22:26:52 +0100 Subject: [PATCH] Tell early parser not to add help --- cura_app.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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,