codereview: discard \r characters (sigh)

R=r
https://golang.org/cl/157041
This commit is contained in:
Russ Cox 2009-11-17 09:08:54 -08:00
parent bae4f5085e
commit 60df923916

View file

@ -1421,6 +1421,8 @@ def MySend(request_path, payload=None,
f = self.opener.open(req)
response = f.read()
f.close()
# Translate \r\n into \n, because Rietveld doesn't.
response = response.replace('\r\n', '\n')
return response
except urllib2.HTTPError, e:
if tries > 3: