mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-11 08:47:50 -06:00
Use common cmdline practices for named args
Contributes CURA-10475 and CURA-10625
This commit is contained in:
parent
3713207040
commit
289b71cd9f
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue