lib/location.py: location can be None (#296)

pull/301/head
Igor Chubin 6 years ago
parent 6b7e083df3
commit e1930bedfb

@ -108,7 +108,7 @@ def ip2location(ip_addr):
except requests.exceptions.ConnectionError:
pass
if ';' in location:
if location and ';' in location:
location = location.split(';')[3], location.split(';')[1]
else:
location = location, None

Loading…
Cancel
Save