From 289b71cd9fb396386bba6406a04b9c4c0d253726 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 18 Jul 2023 11:11:27 +0200 Subject: [PATCH] Use common cmdline practices for named args Contributes CURA-10475 and CURA-10625 --- cura/BackendPlugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/BackendPlugin.py b/cura/BackendPlugin.py index de7b3f29dc..fe8f2246e4 100644 --- a/cura/BackendPlugin.py +++ b/cura/BackendPlugin.py @@ -41,7 +41,7 @@ class BackendPlugin(PluginObject): if not self._plugin_command or "--port" in self._plugin_command: return self._plugin_command or [] - return self._plugin_command + ["--port", str(self.__port)] + return self._plugin_command + ["--port=", str(self.__port)] def start(self) -> bool: """