mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-01 08:53:37 +00:00
Fix for issue #182
This commit is contained in:
parent
c330bbb386
commit
51f691eeb2
1 changed files with 2 additions and 0 deletions
|
@ -189,6 +189,8 @@ class TVShow(object):
|
|||
for curSeason in self.episodes:
|
||||
for curEp in self.episodes[curSeason]:
|
||||
myEp = self.episodes[curSeason][curEp]
|
||||
if not myEp:
|
||||
continue
|
||||
if season == myEp.scene_season and episode == myEp.scene_episode:
|
||||
season = myEp.season
|
||||
episode = myEp.episode
|
||||
|
|
Loading…
Reference in a new issue