Private GIT

Skip to content
Snippets Groups Projects
Commit 8274dac9 authored by Nic Wolfe's avatar Nic Wolfe
Browse files

Merge branch 'master' of github.com:midgetspy/Sick-Beard

parents 0d1f4ae9 272d8f4a
No related branches found
No related tags found
No related merge requests found
......@@ -1139,8 +1139,11 @@ class TVEpisode:
logger.log("Episode airs in the future, changing status from " + str(self.status) + " to " + str(UNAIRED), logger.DEBUG)
self.status = UNAIRED
elif self.airdate == datetime.date.fromordinal(1):
if self.status != IGNORED:
logger.log("Episode has no air date, automatically marking it skipped", logger.DEBUG)
self.status = SKIPPED
else:
logger.log("Episode has no air date, but it's already marked as ignored", logger.DEBUG)
else:
if self.status == UNAIRED:
self.status = WANTED
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment