From 35398d65891200653af10c7f653116806b74768b Mon Sep 17 00:00:00 2001 From: Ari Mandjelikian Date: Wed, 13 Nov 2019 14:27:35 -0500 Subject: [PATCH] Update nhl_goal_light.py --- nhl_goal_light.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nhl_goal_light.py b/nhl_goal_light.py index 76c7d4d..91ddbc0 100644 --- a/nhl_goal_light.py +++ b/nhl_goal_light.py @@ -56,7 +56,7 @@ def setup_nhl(): except IndexError: team_id = "" if team_id == "": - team = raw_input("Enter team you want to setup (without city) (Default: Canadiens) \n") + team = input("Enter team you want to setup (without city) (Default: Canadiens) \n") if team == "": team = "Canadiens" else: @@ -70,7 +70,7 @@ def setup_nhl(): except IndexError: delay = "" if delay is "": - delay = raw_input("Enter delay required to sync : \n") + delay = input("Enter delay required to sync : \n") if delay is "": delay = 0 delay = float(delay)