diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-16 21:02:39 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-16 21:02:39 +0200 |
commit | bdb90b74ed973e9d61c9c6fd35d98ffe4c2d4c20 (patch) | |
tree | 896ff1eaae9151d83be150735c96a37a61d2d038 /pyload/plugin/hoster/RapideoPl.py | |
parent | [api] Improve getConfigValue (diff) | |
parent | fixed: more typos (diff) | |
download | pyload-bdb90b74ed973e9d61c9c6fd35d98ffe4c2d4c20.tar.xz |
Merge pull request #5 from ardi69/0.4.10
fix: assignJob and typos (__name vs. __name__) [2]
Diffstat (limited to 'pyload/plugin/hoster/RapideoPl.py')
-rw-r--r-- | pyload/plugin/hoster/RapideoPl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/plugin/hoster/RapideoPl.py b/pyload/plugin/hoster/RapideoPl.py index 88a596dc7..70e3fd853 100644 --- a/pyload/plugin/hoster/RapideoPl.py +++ b/pyload/plugin/hoster/RapideoPl.py @@ -79,7 +79,7 @@ class RapideoPl(MultiHoster): if "errno" in parsed.keys(): if parsed["errno"] in self.ERROR_CODES: # error code in known - self.fail(self.ERROR_CODES[parsed["errno"]] % self.__name) + self.fail(self.ERROR_CODES[parsed["errno"]] % self.__class__.__name__) else: # error code isn't yet added to plugin self.fail( |