mirror of
https://github.com/golang/go.git
synced 2025-11-06 11:40:59 +00:00
codereview: discard \r characters (sigh)
R=r https://golang.org/cl/157041
This commit is contained in:
parent
bae4f5085e
commit
60df923916
1 changed files with 2 additions and 0 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue