From 1300e7b279c64ab88a9fcacd44ee74ad13c260eb Mon Sep 17 00:00:00 2001 From: Honza Kral Date: Fri, 3 May 2013 17:02:14 +0200 Subject: [PATCH] Forgotten debug print --- elasticsearch/transport.py | 1 - 1 file changed, 1 deletion(-) diff --git a/elasticsearch/transport.py b/elasticsearch/transport.py index f2aaceef..66797314 100644 --- a/elasticsearch/transport.py +++ b/elasticsearch/transport.py @@ -101,7 +101,6 @@ class Transport(object): def perform_request(self, method, url, params=None, body=None, sniffing=False): for attempt in range(self.max_retries): connection = self.get_connection(sniffing) - print connection, attempt, method, url if body: body = self.serializer.dumps(body)