about summary refs log tree commit diff
path: root/scripts/weather.py
diff options
context:
space:
mode:
authorManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2019-07-25 23:56:49 +0200
committerManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2019-07-25 23:56:49 +0200
commitec8532dc710a04fc9d8091fd2568d8967db42b16 (patch)
treee23fc41ac299ffd0a996c0259eec69a7ba712ba7 /scripts/weather.py
parentImproved the overall scripts coehesion (POSIX) (diff)
downloaddwm-ec8532dc710a04fc9d8091fd2568d8967db42b16.tar.gz
dwm-ec8532dc710a04fc9d8091fd2568d8967db42b16.tar.bz2
dwm-ec8532dc710a04fc9d8091fd2568d8967db42b16.zip
Formatting
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"