From 9980e34717512385730cc8a743702b86741d30a8 Mon Sep 17 00:00:00 2001 From: Brian Martin Date: Mon, 18 Mar 2019 23:45:32 -0400 Subject: [PATCH] Fix hardcoded IP Fix hardcoded IP --- run_bumper.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run_bumper.py b/run_bumper.py index bb90a3c..db35ee3 100644 --- a/run_bumper.py +++ b/run_bumper.py @@ -26,8 +26,8 @@ def main(): if platform.system() == "Darwin": # If a Mac, use 0.0.0.0 for listening listen_host = "0.0.0.0" else: - # listen_host = socket.gethostbyname(socket.gethostname()) - listen_host = "10.0.1.220" # Try this if the above doesn't work + listen_host = socket.gethostbyname(socket.gethostname()) + #listen_host = "localhost" # Try this if the above doesn't work conf_address_443 = (listen_host, 443)