From 71f2c81f5dfed23e3215f9bbd4d44311bd4e1f19 Mon Sep 17 00:00:00 2001 From: quietsy Date: Fri, 28 Jan 2022 01:49:52 +0200 Subject: [PATCH] Remove print --- root/dashboard/swag-proxies.py | 1 - 1 file changed, 1 deletion(-) diff --git a/root/dashboard/swag-proxies.py b/root/dashboard/swag-proxies.py index b520e71..1a5bb04 100644 --- a/root/dashboard/swag-proxies.py +++ b/root/dashboard/swag-proxies.py @@ -34,7 +34,6 @@ def find_apps(): def is_available(url): try: host, port = url.split("/")[2].split(":") - print(host + port) with contextlib.closing(socket.socket(socket.AF_INET, socket.SOCK_STREAM)) as sock: if sock.connect_ex((host, int(port))) == 0: return True