From 220b139bcc11dc9d957b26430831d68d738ca95e Mon Sep 17 00:00:00 2001 From: iron8core Date: Tue, 13 May 2014 13:19:03 +0200 Subject: [PATCH] Add forgotten 'self' argument to _isSection --- sickbeard/providers/scc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sickbeard/providers/scc.py b/sickbeard/providers/scc.py index 733418dc..5f907489 100644 --- a/sickbeard/providers/scc.py +++ b/sickbeard/providers/scc.py @@ -142,7 +142,7 @@ class SCCProvider(generic.TorrentProvider): return [search_string] - def _isSection(section, text): + def _isSection(self, section, text): title = '.+? \| %s' % section if re.search(title, text, re.IGNORECASE): return True