.strip() not needed

This commit is contained in:
Matt Martz 2013-08-23 09:45:09 -05:00
parent 44022fe895
commit edf8448274
1 changed files with 1 additions and 1 deletions

View File

@ -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)