mirror of
https://github.com/sivel/speedtest-cli.git
synced 2026-05-13 16:47:54 +00:00
.strip() not needed
This commit is contained in:
parent
44022fe895
commit
edf8448274
1 changed files with 1 additions and 1 deletions
|
|
@ -321,7 +321,7 @@ def getBestServer(servers):
|
|||
for i in range(0, 3):
|
||||
uh = urlopen('%s/latency.txt' % url)
|
||||
start = time.time()
|
||||
text = uh.read(9).strip()
|
||||
text = uh.read(9)
|
||||
total = time.time() - start
|
||||
if int(uh.code) == 200 and text == 'test=test'.encode():
|
||||
cum.append(total)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue