From b098b167e51757294deddf3737bd1faf87a71caa Mon Sep 17 00:00:00 2001 From: Thomas Karl Pietrowski Date: Fri, 8 Dec 2017 22:31:04 +0100 Subject: [PATCH] Fixing name --- cura/CuraApplication.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 11ea6b3edb..39da5868dd 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -634,7 +634,7 @@ class CuraApplication(QtApplication): CuraApplication.addCommandLineOptions(parser) # Important: It is important to keep this line here! # In Uranium we allow to pass unknown arguments to the final executable or script. - parsed_command_line = vars(parser.known_args()[0]) + parsed_command_line = vars(parser.parse_known_args()[0]) if parsed_command_line["single_instance"]: Logger.log("i", "Checking for the presence of an ready running Cura instance.")