From 50b56ef4c91e478637a40e2188d9d62443ef6fda Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sat, 10 Jun 2017 10:07:32 -0500 Subject: [PATCH] Update minibot.py --- bot/minibot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/minibot.py b/bot/minibot.py index cc5ac1a5b4..92192c0264 100644 --- a/bot/minibot.py +++ b/bot/minibot.py @@ -73,7 +73,7 @@ def setup_irc_socket(): def setup_nudge_socket(): s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) - s.bind(("", nudge_port)) # localhost:nudge_port + s.bind(("", 45678)) # localhost:nudge_port s.listen(5) logger.info("Nudge socket up and listening") return s