mirror of
https://github.com/chubin/wttr.in.git
synced 2025-08-14 07:48:24 +02:00
lib/location.py: location can be None (#296)
This commit is contained in:
@ -108,7 +108,7 @@ def ip2location(ip_addr):
|
|||||||
except requests.exceptions.ConnectionError:
|
except requests.exceptions.ConnectionError:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
if ';' in location:
|
if location and ';' in location:
|
||||||
location = location.split(';')[3], location.split(';')[1]
|
location = location.split(';')[3], location.split(';')[1]
|
||||||
else:
|
else:
|
||||||
location = location, None
|
location = location, None
|
||||||
|
Reference in New Issue
Block a user