summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/hoster/IfolderRu.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugins/hoster/IfolderRu.py')
-rw-r--r--pyload/plugins/hoster/IfolderRu.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/pyload/plugins/hoster/IfolderRu.py b/pyload/plugins/hoster/IfolderRu.py
index 2a961f780..49f04dfcb 100644
--- a/pyload/plugins/hoster/IfolderRu.py
+++ b/pyload/plugins/hoster/IfolderRu.py
@@ -6,15 +6,15 @@ from pyload.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo
class IfolderRu(SimpleHoster):
- __name__ = "IfolderRu"
- __type__ = "hoster"
- __version__ = "0.38"
+ __name = "IfolderRu"
+ __type = "hoster"
+ __version = "0.38"
- __pattern__ = r'http://(?:www\.)?(?:ifolder\.ru|rusfolder\.(?:com|net|ru))/(?:files/)?(?P<ID>\d+).*'
+ __pattern = r'http://(?:www\.)?(?:ifolder\.ru|rusfolder\.(?:com|net|ru))/(?:files/)?(?P<ID>\d+).*'
- __description__ = """Ifolder.ru hoster plugin"""
- __license__ = "GPLv3"
- __authors__ = [("zoidberg", "zoidberg@mujmail.cz")]
+ __description = """Ifolder.ru hoster plugin"""
+ __license = "GPLv3"
+ __authors = [("zoidberg", "zoidberg@mujmail.cz")]
SIZE_REPLACEMENTS = [(u'Кб', 'KB'), (u'Мб', 'MB'), (u'Гб', 'GB')]
@@ -35,7 +35,7 @@ class IfolderRu(SimpleHoster):
def process(self, pyfile):
- file_id = re.match(self.__pattern__, pyfile.url).group('ID')
+ file_id = re.match(self.__pattern, pyfile.url).group('ID')
self.html = self.load("http://rusfolder.com/%s" % file_id, cookies=True, decode=True)
self.getFileInfo()