mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-17 14:55:07 -05:00
Test fix #3
This commit is contained in:
parent
6a3ff97cec
commit
e8fc45058f
@ -132,10 +132,10 @@ class MainSanityCheck(db.DBSanityCheck):
|
||||
"SELECT showid, indexerid, indexer, episode_id, season, episode FROM tv_episodes WHERE scene_season = 0 OR scene_episode = 0")
|
||||
|
||||
for epResult in sqlResults:
|
||||
indexerid = int(epResult["showid"])
|
||||
indexer = int(epResult["indexer"])
|
||||
season = int(epResult["season"])
|
||||
episode = int(epResult["episode"])
|
||||
indexerid = int(str(epResult["showid"]).encode('UTF-8'))
|
||||
indexer = int(str(epResult["indexer"]).encode('UTF-8'))
|
||||
season = int(str(epResult["season"]).encode('UTF-8'))
|
||||
episode = int(str(epResult["episode"]).encode('UTF-8'))
|
||||
|
||||
logger.log(
|
||||
u"Repairing any scene numbering issues for showid: " + str(epResult["showid"]) + u" season: " + str(
|
||||
|
Loading…
Reference in New Issue
Block a user