1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-08-13 16:53:54 -04:00

Merge pull request #695 from echel0n/dev

Fixed unbound method editShow() error
This commit is contained in:
echel0n 2014-08-08 00:18:42 -07:00
commit a2886bcf02

View File

@ -1112,7 +1112,7 @@ class Manage(MainHandler):
exceptions_list = []
curErrors += Home.editShow(curShow, new_show_dir, anyQualities, bestQualities, exceptions_list,
curErrors += Home(self.application, self.request).editShow(curShow, new_show_dir, anyQualities, bestQualities, exceptions_list,
flatten_folders=new_flatten_folders,
paused=new_paused, sports=new_sports,
subtitles=new_subtitles, anime=new_anime,
@ -4391,4 +4391,4 @@ class UI(MainHandler):
'type': cur_notification.type}
cur_notification_num += 1
return json.dumps(messages)
return json.dumps(messages)