about summary refs log tree commit diff
path: root/scripts/weather.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/weather.py')
-rw-r--r--scripts/weather.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/weather.py b/scripts/weather.py
index 936dc6f..1f4bfba 100644
--- a/scripts/weather.py
+++ b/scripts/weather.py
@@ -14,7 +14,7 @@ try:
 except requests.ConnectionError:
     internet = False
 
-COORDINATES = s = open("/usr/share/geolocate/.location", 'r').read()
+COORDINATES = open("/usr/share/geolocate/.location", 'r').read()
 LOCATION = "lat=" + COORDINATES.replace(":","&lon=")
 
 API_KEY = "756edce7e9d4c385ef9499a53492678c"