Tests should have caught this...

This commit is contained in:
Wraithan (Chris McDonald) 2013-04-15 09:14:12 -07:00
Родитель baf735c67f
Коммит b8d15bba7c
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -30,10 +30,10 @@ class GeoIP:
res = requests.post('{0}/country.json'.format(self.url),
timeout=self.timeout,
data={'ip': address})
except request.Timeout:
except requests.Timeout:
log.error(('Geodude timed out looking up: {0}'
.format(address)))
except request.RequestException as e:
except requests.RequestException as e:
log.error('Geodude connection error: {0}'.format(str(e)))
if res.status_code == 200:
return res.json.get('country_code',