1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-12-13 11:32:20 -05:00

Another small typo

This commit is contained in:
echel0n 2014-05-03 02:31:40 -07:00
parent 81a7a2b97f
commit 2a04c13b91

View File

@ -2833,8 +2833,8 @@ class Home:
#t.all_scene_exceptions = list(set((get_scene_exceptions(showObj.indexerid) or []) + (get_custom_exceptions(showObj.indexerid) or [])))
t.all_scene_exceptions = get_scene_exceptions(showObj.indexerid)
t.scene_numbering = get_scene_numbering_for_show(showObj.indexerid, showObj.indexer)
t.xem_numbering = get_xem_numbering_for_show(showObj.indexerid, showObj.indexer)
t.scene_numbering = get_scene_numbering_for_show(showObj.indexerid, int(showObj.indexer))
t.xem_numbering = get_xem_numbering_for_show(showObj.indexerid, int(showObj.indexer))
return _munge(t)
@ -3404,7 +3404,7 @@ class Home:
set_scene_numbering(show, forSeason, forEpisode, sceneSeason, sceneEpisode)
sn = get_scene_numbering(show, ep_obj.indexer, forSeason, forEpisode)
sn = get_scene_numbering(show, int(ep_obj.indexer), forSeason, forEpisode)
if sn:
(result['sceneSeason'], result['sceneEpisode']) = sn
else: