Skip to content

Commit

Permalink
Fix sports shows not post-processing (#4294)
Browse files Browse the repository at this point in the history
  • Loading branch information
medariox authored Jun 2, 2018
1 parent f3c694e commit 94197da
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion medusa/post_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,8 @@ def _analyze_name(self, name):
self.log(u'{0}'.format(error), logger.DEBUG)
return to_return

if parse_result.series and all([parse_result.series.air_by_date, parse_result.is_air_by_date]):
if parse_result.series and all([parse_result.series.air_by_date or parse_result.series.is_sports,
parse_result.is_air_by_date]):
season = -1
episodes = [parse_result.air_date]
else:
Expand Down

0 comments on commit 94197da

Please sign in to comment.