From c63c5e43d62015ee5fba5a7d97495ec1799424fa Mon Sep 17 00:00:00 2001 From: adam Date: Mon, 21 Jul 2014 17:20:54 +0800 Subject: [PATCH] Fix proper searches with ABD and sports --- sickbeard/properFinder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sickbeard/properFinder.py b/sickbeard/properFinder.py index ef3fddf9..055488e7 100644 --- a/sickbeard/properFinder.py +++ b/sickbeard/properFinder.py @@ -131,7 +131,7 @@ class ProperFinder(): # populate our Proper instance if parse_result.is_air_by_date or parse_result.is_sports: curProper.season = -1 - curProper.episode = parse_result.air_date or parse_result.is_sports_air_date + curProper.episode = parse_result.air_date or parse_result.sports_air_date else: if parse_result.is_anime: logger.log(u"I am sorry '"+curProper.name+"' seams to be an anime proper seach is not yet suported", logger.DEBUG)