diff options
author | 2015-04-20 22:24:43 +0200 | |
---|---|---|
committer | 2015-04-20 22:24:43 +0200 | |
commit | 919b6dacac69459c64239c3d48ccc435a18b049c (patch) | |
tree | af4b6fb3c49b1f79960a810c3963681f8be86b3f /pyload/plugin/hoster/RapideoPl.py | |
parent | add log warnings by using of deprecated features (diff) | |
download | pyload-919b6dacac69459c64239c3d48ccc435a18b049c.tar.xz |
Improve getClassName
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 e19ccc45b..35d4da0ad 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.__class__.__name__) + self.fail(self.ERROR_CODES[parsed['errno']] % self.getClassName()) else: # error code isn't yet added to plugin self.fail( |