Commit e1cab35d authored by ibuler's avatar ibuler

[Bugfix] 修改获取城市

parent 2e8f5919
......@@ -200,7 +200,7 @@ def get_ip_city(ip, timeout=10):
url = 'http://int.dpool.sina.com.cn/iplookup/iplookup.php?ip=%s&format=json' % ip
try:
r = requests.get(url, timeout=timeout)
except requests.Timeout:
except:
r = None
city = 'Unknown'
if r and r.status_code == 200:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment