diff options
Diffstat (limited to 'pyload/plugin/hoster/IfileIt.py')
-rw-r--r-- | pyload/plugin/hoster/IfileIt.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/pyload/plugin/hoster/IfileIt.py b/pyload/plugin/hoster/IfileIt.py index 1b851477a..647e06c01 100644 --- a/pyload/plugin/hoster/IfileIt.py +++ b/pyload/plugin/hoster/IfileIt.py @@ -4,13 +4,13 @@ from pyload.plugin.internal.DeadHoster import DeadHoster class IfileIt(DeadHoster): - __name__ = "IfileIt" - __type__ = "hoster" - __version__ = "0.29" + __name = "IfileIt" + __type = "hoster" + __version = "0.29" - __pattern__ = r'^unmatchable$' - __config__ = [] + __pattern = r'^unmatchable$' + __config = [] - __description__ = """Ifile.it""" - __license__ = "GPLv3" - __authors__ = [("zoidberg", "zoidberg@mujmail.cz")] + __description = """Ifile.it""" + __license = "GPLv3" + __authors = [("zoidberg", "zoidberg@mujmail.cz")] |