mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-01 08:53:37 +00:00
Update tv.py
Removed weakref, caused issues with searching and downloads
This commit is contained in:
parent
166dffeb5a
commit
3384e2c51d
1 changed files with 1 additions and 1 deletions
|
@ -251,7 +251,7 @@ class TVShow(object):
|
|||
if ep != None:
|
||||
episodeCache[season][episode] = ep
|
||||
|
||||
epObj = weakref.proxy(episodeCache[season][episode])
|
||||
epObj = episodeCache[season][episode]
|
||||
return epObj
|
||||
|
||||
def should_update(self, update_date=datetime.date.today()):
|
||||
|
|
Loading…
Reference in a new issue