summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/RapideoPl.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/hoster/RapideoPl.py')
-rw-r--r--module/plugins/hoster/RapideoPl.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/RapideoPl.py b/module/plugins/hoster/RapideoPl.py
index daefcd5a8..6304bd38a 100644
--- a/module/plugins/hoster/RapideoPl.py
+++ b/module/plugins/hoster/RapideoPl.py
@@ -78,10 +78,10 @@ class RapideoPl(MultiHoster):
if "errno" in parsed.keys():
if parsed["errno"] in self.ERROR_CODES:
- # error code in known
+ #: error code in known
self.fail(self.ERROR_CODES[parsed["errno"]] % self.__name__)
else:
- # error code isn't yet added to plugin
+ #: error code isn't yet added to plugin
self.fail(
parsed["errstring"]
or _("Unknown error (code: %s)") % parsed["errno"]