Get http://www.tigerwalk.info: malformed HTTP status code "version=
\"1.0\"".
Here's the code I used to generate that error:
...
resp, _, err := http.Get( flag.Arg( 0 ) );
if err != nil {
err_str := fmt.Sprintf( "%s", err );
die( err_str );
}
...
I can correctly receive web pages from other sites so I would have to
guess that my code is correct. Any suggestions?
-Daniel
Try
hg pull
hg update 757326e06e44
and then re-run all.bash.
We fixed a couple bugs in the http package recently,
and one of them would explain this.
Russ
Thanks. That solved the problem. It would be great if GO could
handle https requests as easily.
-Daniel