From a6310c8eeb902fd0d26902ab7251d80fc17fed06 Mon Sep 17 00:00:00 2001 From: Techwolf Date: Sat, 19 Oct 2019 15:27:43 -0700 Subject: [PATCH] Fix WhiteNoise --- dosagelib/plugins/w.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dosagelib/plugins/w.py b/dosagelib/plugins/w.py index 81bcdf85f..a83f02070 100644 --- a/dosagelib/plugins/w.py +++ b/dosagelib/plugins/w.py @@ -104,7 +104,8 @@ class WereIWolf(_ParserScraper): class WhiteNoise(_WordPressScraper): url = 'http://whitenoisecomic.com/' - firstStripUrl = url + 'comic/book-one/' + stripUrl = url + 'comic/%s/' + firstStripUrl = stripUrl % 'book-one' prevSearch = '//a[%s]' % xpath_class('previous-webcomic-link')