From c5eeb4ba895fa22d6cf189beec99a0cd40fed2e3 Mon Sep 17 00:00:00 2001 From: Joe Gregorio Date: Mon, 25 Feb 2013 10:16:08 -0500 Subject: Add missing conn.close(). Reviewed in https://codereview.appspot.com/7384055/. --- python2/httplib2/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python2/httplib2/__init__.py b/python2/httplib2/__init__.py index b4f271c..129a980 100644 --- a/python2/httplib2/__init__.py +++ b/python2/httplib2/__init__.py @@ -1269,6 +1269,7 @@ and more. conn.connect() continue else: + conn.close() raise else: content = "" -- cgit v1.2.1