diff options
Diffstat (limited to 'internal/builder/template.go')
-rw-r--r-- | internal/builder/template.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/builder/template.go b/internal/builder/template.go index 9f019df..c318107 100644 --- a/internal/builder/template.go +++ b/internal/builder/template.go @@ -47,7 +47,7 @@ type QueryDocument struct { func NewDocumentFromReader(r io.Reader) (*QueryDocument, error) { doc, err := goquery.NewDocumentFromReader(r) - return &QueryDocument{doc}, errors.Wrap(err, "could not create query document") + return &QueryDocument{doc}, errors.WithMessage(err, "could not create query document") } func (q *QueryDocument) Find(selector string) *QuerySelection { @@ -148,7 +148,7 @@ func getFeedStylesHash(r io.Reader) (string, error) { } expr, err := xpath.CompileWithNS("//xhtml:style", nsMap) if err != nil { - return "", errors.Wrap(err, "could not parse XPath") + return "", errors.WithMessage(err, "could not parse XPath") } style := xmlquery.QuerySelector(doc, expr) |