mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-01 00:43:37 +00:00
Fixed unbound method editShow() error
This commit is contained in:
parent
1bf47900df
commit
3592e559d0
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue