diff options
author | 2015-04-16 21:02:39 +0200 | |
---|---|---|
committer | 2015-04-16 21:02:39 +0200 | |
commit | bdb90b74ed973e9d61c9c6fd35d98ffe4c2d4c20 (patch) | |
tree | 896ff1eaae9151d83be150735c96a37a61d2d038 /pyload/plugin/hoster/FileserveCom.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/FileserveCom.py')
-rw-r--r-- | pyload/plugin/hoster/FileserveCom.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pyload/plugin/hoster/FileserveCom.py b/pyload/plugin/hoster/FileserveCom.py index b275f6e86..a7bb22440 100644 --- a/pyload/plugin/hoster/FileserveCom.py +++ b/pyload/plugin/hoster/FileserveCom.py @@ -40,9 +40,9 @@ class FileserveCom(Hoster): __description = """Fileserve.com hoster plugin""" __license = "GPLv3" __authors = [("jeix", "jeix@hasnomail.de"), - ("mkaay", "mkaay@mkaay.de"), - ("Paul King", ""), - ("zoidberg", "zoidberg@mujmail.cz")] + ("mkaay", "mkaay@mkaay.de"), + ("Paul King", ""), + ("zoidberg", "zoidberg@mujmail.cz")] URLS = ["http://www.fileserve.com/file/", "http://www.fileserve.com/link-checker.php", @@ -144,7 +144,7 @@ class FileserveCom(Hoster): if "fail" in res: self.fail(_("Failed getting wait time")) - if self.__name == "FilejungleCom": + if self.__class__.__name__ == "FilejungleCom": m = re.search(r'"waitTime":(\d+)', res) if m is None: self.fail(_("Cannot get wait time")) @@ -184,7 +184,7 @@ class FileserveCom(Hoster): def handlePremium(self, pyfile): premium_url = None - if self.__name == "FileserveCom": + if self.__class__.__name__ == "FileserveCom": #try api download res = self.load("http://app.fileserve.com/api/download/premium/", post={"username": self.user, |