mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-03 18:03: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:
|
if ep != None:
|
||||||
episodeCache[season][episode] = ep
|
episodeCache[season][episode] = ep
|
||||||
|
|
||||||
epObj = weakref.proxy(episodeCache[season][episode])
|
epObj = episodeCache[season][episode]
|
||||||
return epObj
|
return epObj
|
||||||
|
|
||||||
def should_update(self, update_date=datetime.date.today()):
|
def should_update(self, update_date=datetime.date.today()):
|
||||||
|
|
Loading…
Reference in a new issue