From 72e6e78ed7c9b39ec04643888016c9b3830a9745 Mon Sep 17 00:00:00 2001 From: Chris McCarthy Date: Fri, 9 Aug 2024 09:32:13 +0100 Subject: [PATCH] #2768 - Removed debugging print statement --- src/primaite/game/game.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/primaite/game/game.py b/src/primaite/game/game.py index 3d3caed9..9117d30a 100644 --- a/src/primaite/game/game.py +++ b/src/primaite/game/game.py @@ -335,7 +335,6 @@ class PrimaiteGame: """Set listener ports on software.""" listen_on_ports = [] for port_id in set(software_cfg.get("options", {}).get("listen_on_ports", [])): - print("yes", port_id) port = None if isinstance(port_id, int): port = Port(port_id)