From a3a37ee689ece3c37cadbacb5678fce4d7d7b00e Mon Sep 17 00:00:00 2001 From: Michael Hall Date: Sun, 24 Jun 2018 13:09:15 -0400 Subject: [PATCH] Remove debugging print statement --- events/ipstack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/events/ipstack.py b/events/ipstack.py index 470871c..90c6163 100644 --- a/events/ipstack.py +++ b/events/ipstack.py @@ -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: