1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-08-13 16:53:54 -04:00

Fixed bug with air dates being malformed

This commit is contained in:
echel0n 2014-03-21 04:09:18 -07:00
parent d5053ef8d3
commit b3662cfb7b

View File

@ -1358,12 +1358,12 @@ class TVEpisode(object):
self.description = getattr(myEp, 'overview', "")
try:
firstaired = getattr(myEp, 'firstaired', None)
if firstaired is None: raise ValueError
firstaired = getattr(myEp, 'firstaired', None)
if firstaired is None or "0000-00-00":
firstaired = str(datetime.date.fromordinal(1))
rawAirdate = [int(x) for x in firstaired.split("-")]
firstaired = re.sub("(0{4})([-]0{2}){1,}", str(datetime.date.fromordinal(1)), firstaired)
rawAirdate = [int(x) for x in firstaired.split("-")]
try:
self.airdate = datetime.date(rawAirdate[0], rawAirdate[1], rawAirdate[2])
except ValueError:
logger.log(u"Malformed air date retrieved from " + self.indexer + " ("+self.show.name+" - "+str(season)+"x"+str(episode)+")", logger.ERROR)