.strip() not needed
This commit is contained in:
parent
44022fe895
commit
edf8448274
|
@ -321,7 +321,7 @@ def getBestServer(servers):
|
||||||
for i in range(0, 3):
|
for i in range(0, 3):
|
||||||
uh = urlopen('%s/latency.txt' % url)
|
uh = urlopen('%s/latency.txt' % url)
|
||||||
start = time.time()
|
start = time.time()
|
||||||
text = uh.read(9).strip()
|
text = uh.read(9)
|
||||||
total = time.time() - start
|
total = time.time() - start
|
||||||
if int(uh.code) == 200 and text == 'test=test'.encode():
|
if int(uh.code) == 200 and text == 'test=test'.encode():
|
||||||
cum.append(total)
|
cum.append(total)
|
||||||
|
|
Loading…
Reference in New Issue