2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-21 17:11:58 +00:00

Fix the python3 of rsp read

This commit is contained in:
Jarrod Johnson 2021-11-09 16:01:45 -05:00
parent ef10237cfe
commit 9a6d422fd8

View File

@ -28,7 +28,7 @@ if 'authResult>1' in rspdata:
restorepwd = True
w.request('POST', '/data/login', bdata, headers)
rsp = w.getresponse()
rspdata = rsp.read()
rspdata = rsp.read().decode('utf8')
if 'renew_account' in rspdata:
restorepwd = True
tokens = fromstring(rspdata)
@ -36,10 +36,10 @@ if 'renew_account' in rspdata:
w.set_header('ST2', st2)
w.request('POST', '/data/changepwd', 'oripwd={0}&newpwd={1}'.format(os.environ['SMMPASS'], tmppassword))
rsp = w.getresponse()
rspdata = rsp.read()
rspdata = rsp.read().decode('utf8')
w.request('POST', '/data/login', bdata, headers)
rsp = w.getresponse()
rspdata = rsp.read()
rspdata = rsp.read().decode('utf8')
if 'authResult>0' in rspdata:
tokens = fromstring(rspdata)
st2 = tokens.findall('st2')[0].text