Commit b2400c28 authored by Brad Fitzpatrick's avatar Brad Fitzpatrick

fix windows build: http.Get finalURL removal missed earlier

Not sure why this only broke Windows. Make test is only run
on windows for that directory?

TBR=golang-dev

R=golang-dev
CC=golang-dev
https://golang.org/cl/4545044
parent c35c6720
......@@ -258,7 +258,7 @@ func loadChars() {
if *dataURL == "" {
flag.Set("data", *url+"UnicodeData.txt")
}
resp, _, err := http.Get(*dataURL)
resp, err := http.Get(*dataURL)
if err != nil {
logger.Fatal(err)
}
......@@ -549,7 +549,7 @@ func printScriptOrProperty(doProps bool) {
return
}
var err os.Error
resp, _, err := http.Get(*url + file)
resp, err := http.Get(*url + file)
if err != nil {
logger.Fatal(err)
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment