diff --git a/speedtest_cli.py b/speedtest_cli.py index dfecb84..d61a21c 100755 --- a/speedtest_cli.py +++ b/speedtest_cli.py @@ -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)