From 9132002b80345f79afd51558f1a059e3280cbee5 Mon Sep 17 00:00:00 2001 From: grossmj Date: Wed, 4 Jan 2023 09:08:40 +0800 Subject: [PATCH] Fix typos --- gns3server/compute/port_manager.py | 2 +- gns3server/controller/node.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gns3server/compute/port_manager.py b/gns3server/compute/port_manager.py index cf58203c..fc7a5088 100644 --- a/gns3server/compute/port_manager.py +++ b/gns3server/compute/port_manager.py @@ -84,7 +84,7 @@ class PortManager: @console_host.setter def console_host(self, new_host): """ - Bind console host to 0.0.0.0 if remote connections are allowed. + Bind console host to 0.0.0.0 or :: if remote connections are allowed. """ server_config = Config.instance().get_section_config("Server") diff --git a/gns3server/controller/node.py b/gns3server/controller/node.py index ba1bc28d..906556b8 100644 --- a/gns3server/controller/node.py +++ b/gns3server/controller/node.py @@ -34,7 +34,7 @@ log = logging.getLogger(__name__) class Node: - # This properties are used only on controller and are not forwarded to the compute + # These properties are used only on controller and are not forwarded to computes CONTROLLER_ONLY_PROPERTIES = ["x", "y", "z", "locked", "width", "height", "symbol", "label", "console_host", "port_name_format", "first_port_name", "port_segment_size", "ports", "category", "console_auto_start"]