Remove debugging print statement

This commit is contained in:
Michael Hall 2018-06-24 13:09:15 -04:00
parent 501918da77
commit a3a37ee689

View file

@ -103,7 +103,7 @@ def get_ipstack_geocoder(ip):
if ipstack_key is None:
raise Exception("You must define IPSTACK_ACCESS_KEY in your setting to use ipstack.py geocoding")
call_url = IPSTACK_URL.format(ip, ipstack_key)
print("Calling ipstack: {0}".format(call_url))
session = requests.Session()
response = session.get(call_url)
if response.status_code != 200: