From b5bff211b15187ff01dacaacdc022dc917d48b81 Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Fri, 11 Apr 2014 12:17:03 +0200 Subject: Fix retry time formats Merges vuolter/pyload@498b9e3 (cherry picked from commit 381c4d02a900fac224ccaa802db080cf577ed2fb) --- pyload/plugins/hoster/FastixRu.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pyload/plugins/hoster/FastixRu.py') diff --git a/pyload/plugins/hoster/FastixRu.py b/pyload/plugins/hoster/FastixRu.py index 39091d769..ef8838f8e 100644 --- a/pyload/plugins/hoster/FastixRu.py +++ b/pyload/plugins/hoster/FastixRu.py @@ -61,6 +61,6 @@ class FastixRu(Hoster): "empty": re.compile(r"^$")}) if check == "error": - self.retry(reason="An error occurred while generating link.", wait_time=60) + self.retry(wait_time=60, reason="An error occurred while generating link.") elif check == "empty": - self.retry(reason="Downloaded File was empty.", wait_time=60) + self.retry(wait_time=60, reason="Downloaded File was empty.") -- cgit v1.2.3