diff --git a/cc/weather b/cc/weather
index a13d008..f2026fc 100644
--- a/cc/weather
+++ b/cc/weather
@@ -29,4 +29,4 @@ weathers = {
 if "error" in query:
     print("API ERROR: " + query["error"]["message"])
 else:
-    print(query["location"]["name"] + ", " + query["location"]["region"] + ", " + query["location"]["country"] + ": " + weathers[query["current"]["is_day"]][query["current"]["condition"]["code"]] + " " + query["current"]["condition"]["text"] + " " + str(query["current"]["temp_c"]) + "°F" + "(" + str(query["current"]["temp_c"]) + "°C)")
\ No newline at end of file
+    print(query["location"]["name"] + ", " + query["location"]["region"] + ", " + query["location"]["country"] + ": " + weathers[query["current"]["is_day"]][query["current"]["condition"]["code"]] + " " + query["current"]["condition"]["text"] + " " + str(query["current"]["temp_c"]) + "°F (" + str(query["current"]["temp_c"]) + "°C)")
\ No newline at end of file