aboutsummaryrefslogtreecommitdiffhomepage
path: root/reader/scraper
diff options
context:
space:
mode:
authorGravatar Frédéric Guillot <fred@miniflux.net>2018-12-02 20:51:06 -0800
committerGravatar Frédéric Guillot <fred@miniflux.net>2018-12-02 20:51:06 -0800
commit311a133ab87423958d850a91dea0b49543b97c2a (patch)
treed73d39d8adcc23cd69f2e25fab575277e20f3f6e /reader/scraper
parent52de36b158ab2340d2c206adabb7568d036f1aa2 (diff)
Refactor manual entry scraper
Diffstat (limited to 'reader/scraper')
-rw-r--r--reader/scraper/scraper.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/reader/scraper/scraper.go b/reader/scraper/scraper.go
index 58f37d5..fd5ba33 100644
--- a/reader/scraper/scraper.go
+++ b/reader/scraper/scraper.go
@@ -54,7 +54,7 @@ func Fetch(websiteURL, rules, userAgent string) (string, error) {
logger.Debug(`[Scraper] Using rules %q for %q`, rules, websiteURL)
content, err = scrapContent(response.Body, rules)
} else {
- logger.Debug(`[Scraper] Using readability for "%q`, websiteURL)
+ logger.Debug(`[Scraper] Using readability for %q`, websiteURL)
content, err = readability.ExtractContent(response.Body)
}