Fix unclosed SSLSocket warning, Update credits

This commit is contained in:
Mice Pápai 2017-05-05 10:39:04 +02:00 committed by Hugo
parent 705eafbd3e
commit 618833e297

View file

@ -33,8 +33,9 @@ import time
import xml.dom import xml.dom
__version__ = '1.9.0' __version__ = '1.9.0'
__author__ = 'Amr Hassan, hugovk' __author__ = 'Amr Hassan, hugovk, Mice Pápai'
__copyright__ = "Copyright (C) 2008-2010 Amr Hassan, 2013-2017 hugovk" __copyright__ = ('Copyright (C) 2008-2010 Amr Hassan, 2013-2017 hugovk, '
'2017 Mice Pápai')
__license__ = "apache2" __license__ = "apache2"
__email__ = 'amr.hassan@gmail.com' __email__ = 'amr.hassan@gmail.com'
@ -1048,6 +1049,7 @@ class _Request(object):
response_text = XML_ILLEGAL.sub("?", response_text) response_text = XML_ILLEGAL.sub("?", response_text)
self._check_response_for_errors(response_text) self._check_response_for_errors(response_text)
conn.close()
return response_text return response_text
def execute(self, cacheable=False): def execute(self, cacheable=False):