Fix Python 2 compatibility for Newshounds
This commit is contained in:
parent
241732bbba
commit
1a938ffa05
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ class Newshounds(_ParserScraper):
|
|||
# Add navigation link between comic and graphic novel
|
||||
if url == self.stripUrl % 'nh2/20070201':
|
||||
return self.stripUrl % 'nh1/20061208'
|
||||
return super().getPrevUrl(url, data)
|
||||
return super(Newshounds, self).getPrevUrl(url, data)
|
||||
|
||||
|
||||
class NewWorld(_WordPressScraper):
|
||||
|
|
Loading…
Reference in a new issue