From 009ee14b14fdfd33fa1dae0b9cfd02592c182356 Mon Sep 17 00:00:00 2001 From: Safihre Date: Sun, 9 Oct 2016 12:54:01 +0200 Subject: [PATCH] Fix retry_all API-call --- sabnzbd/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sabnzbd/api.py b/sabnzbd/api.py index 8054196..fb56d06 100644 --- a/sabnzbd/api.py +++ b/sabnzbd/api.py @@ -724,7 +724,7 @@ def _api_rss_now(name, output, kwargs): def _api_retry_all(name, output, kwargs): """ API: Retry all failed items in History """ - return report(output, keyword='status', data=retry_all_jobs) + return report(output, keyword='status', data=retry_all_jobs()) def _api_reset_quota(name, output, kwargs):