summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/RapideoPl.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-06-17 18:59:20 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-06-24 22:42:40 +0200
commit20b6a2ec022202b0efb6cb69415239fb8f4d1445 (patch)
treefdbb3ad42854144b1cace0221145a472b36ef84d /module/plugins/hoster/RapideoPl.py
parentSpare code cosmetics (diff)
downloadpyload-20b6a2ec022202b0efb6cb69415239fb8f4d1445.tar.xz
Spare code cosmetics (2)
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"]