Shifted try except block placement
This commit is contained in:
parent
222cfaa92a
commit
2821f0f667
|
@ -245,18 +245,19 @@ class namecoinConnection(object):
|
|||
"Authorization", "Basic %s" % base64.b64encode(authstr))
|
||||
self.con.endheaders()
|
||||
self.con.send(data)
|
||||
try:
|
||||
resp = self.con.getresponse()
|
||||
result = resp.read()
|
||||
if resp.status != 200:
|
||||
raise Exception(
|
||||
"Namecoin returned status"
|
||||
" %i: %s" % (resp.status, resp.reason))
|
||||
except: # noqa:E722
|
||||
logger.info("HTTP receive error")
|
||||
except: # noqa:E722
|
||||
logger.info("HTTP connection error")
|
||||
|
||||
try:
|
||||
resp = self.con.getresponse()
|
||||
result = resp.read()
|
||||
if resp.status != 200:
|
||||
raise Exception(
|
||||
"Namecoin returned status"
|
||||
" %i: %s" % (resp.status, resp.reason))
|
||||
except: # noqa:E722
|
||||
logger.info("HTTP receive error")
|
||||
|
||||
return result
|
||||
|
||||
def queryServer(self, data):
|
||||
|
|
Reference in New Issue
Block a user