From 74be22e68223e38dfdbda144d25ac69470f1704b Mon Sep 17 00:00:00 2001 From: Thomas Karl Pietrowski Date: Sat, 9 Dec 2017 11:26:04 +0100 Subject: [PATCH] Adding the application name Maybe it is possible to set this value later. Eg. in Uranium, so we can get the name from .getApplicationName(). --- cura_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura_app.py b/cura_app.py index 627583d384..9167829754 100755 --- a/cura_app.py +++ b/cura_app.py @@ -9,7 +9,7 @@ import sys from UM.Platform import Platform -parser = argparse.ArgumentParser() +parser = argparse.ArgumentParser(prog = "cura") parser.add_argument('--debug', action='store_true', default = False