Shifted try except block placement

This commit is contained in:
kuldeep.k@cisinlabs.com 2021-09-07 22:22:07 +05:30
parent 222cfaa92a
commit 2821f0f667
No known key found for this signature in database
GPG Key ID: AF4FB299BF7C7C2A

View File

@ -245,6 +245,9 @@ class namecoinConnection(object):
"Authorization", "Basic %s" % base64.b64encode(authstr))
self.con.endheaders()
self.con.send(data)
except: # noqa:E722
logger.info("HTTP connection error")
try:
resp = self.con.getresponse()
result = resp.read()
@ -254,8 +257,6 @@ class namecoinConnection(object):
" %i: %s" % (resp.status, resp.reason))
except: # noqa:E722
logger.info("HTTP receive error")
except: # noqa:E722
logger.info("HTTP connection error")
return result