diff --git a/document.go b/document.go index 8f0cc4d..f4d65d2 100644 --- a/document.go +++ b/document.go @@ -172,7 +172,7 @@ func (this *Document) LoadFile(filename string) (err os.Error) { // Load the contents of this document from the supplied uri. func (this *Document) LoadUri(uri string) (err os.Error) { var r *http.Response - if r, _, err = http.Get(uri); err != nil { + if r, err = http.Get(uri); err != nil { return }