From 1a938ffa051e0bcbf6880c8fecb11ca9253369be Mon Sep 17 00:00:00 2001 From: Techwolf Date: Mon, 28 Oct 2019 01:26:37 -0700 Subject: [PATCH] Fix Python 2 compatibility for Newshounds --- dosagelib/plugins/n.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dosagelib/plugins/n.py b/dosagelib/plugins/n.py index d5c2d6080..b0cc6445d 100644 --- a/dosagelib/plugins/n.py +++ b/dosagelib/plugins/n.py @@ -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):