From 51c71492c3ec5b66547704f104868af9724af025 Mon Sep 17 00:00:00 2001 From: Noel <44520723+noelseb@users.noreply.github.com> Date: Sat, 27 Oct 2018 09:41:19 +0000 Subject: [PATCH] CHECK2 --- weatherCelsius.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/weatherCelsius.py b/weatherCelsius.py index ea3bef8..75cd550 100644 --- a/weatherCelsius.py +++ b/weatherCelsius.py @@ -10,14 +10,14 @@ from math import floor as f from termcolor import colored except ImportError: - print("import error") + print("IMPORT ERROR") try: res=requests.get("https://www.msn.com/en-us/weather") except Exception as e: - print(colored("No Internet","blue")) + print(colored("No INTERNET","blue")) exit(0) bsobj=BeautifulSoup(res.text,"html.parser") ftemp=bsobj.find("span",{"class":"current"})