Private GIT

Skip to content
Snippets Groups Projects
Commit 91617faa authored by miigotu's avatar miigotu
Browse files

Merge pull request #2537 from MGaetan89/bug/2872

Use full name of `showQueueScheduler` to delete a show
parents d8821d1c 5af583d1
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,6 @@
import sickbeard
from sickbeard import showQueueScheduler
from sickbeard.exceptions import CantRefreshException, CantRemoveException, ex, MultipleShowObjectsException
from sickbeard.helpers import findCertainShow
......@@ -44,7 +43,7 @@ class Show:
return error, show
try:
showQueueScheduler.action.removeShow(show, bool(remove_files))
sickbeard.showQueueScheduler.action.removeShow(show, bool(remove_files))
except CantRemoveException as exception:
return ex(exception), show
......@@ -91,7 +90,7 @@ class Show:
return error, show
try:
showQueueScheduler.action.refreshShow(show)
sickbeard.showQueueScheduler.action.refreshShow(show)
except CantRefreshException as exception:
return ex(exception), show
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment