Browse Source

Previous fix to air dates did not take but this fix does correct the issue once causing malformed air dates or no air dates at all.

tags/release_0.1.0
echel0n 11 years ago
parent
commit
f3c33279b5
  1. 2
      sickbeard/tv.py

2
sickbeard/tv.py

@ -1359,7 +1359,7 @@ class TVEpisode(object):
self.description = getattr(myEp, 'overview', "")
firstaired = getattr(myEp, 'firstaired', None)
if firstaired is None or "0000-00-00":
if firstaired is None or firstaired is "0000-00-00":
firstaired = str(datetime.date.fromordinal(1))
rawAirdate = [int(x) for x in firstaired.split("-")]

Loading…
Cancel
Save