diff options
Diffstat (limited to 'pyload/plugins/hoster/FileParadoxIn.py')
-rw-r--r-- | pyload/plugins/hoster/FileParadoxIn.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/pyload/plugins/hoster/FileParadoxIn.py b/pyload/plugins/hoster/FileParadoxIn.py index 174aa7211..eee67fa80 100644 --- a/pyload/plugins/hoster/FileParadoxIn.py +++ b/pyload/plugins/hoster/FileParadoxIn.py @@ -6,15 +6,15 @@ from pyload.plugins.internal.XFSHoster import XFSHoster, create_getInfo class FileParadoxIn(XFSHoster): - __name__ = "FileParadoxIn" - __type__ = "hoster" - __version__ = "0.04" + __name = "FileParadoxIn" + __type = "hoster" + __version = "0.04" - __pattern__ = r'https?://(?:www\.)?fileparadox\.in/\w{12}' + __pattern = r'https?://(?:www\.)?fileparadox\.in/\w{12}' - __description__ = """FileParadox.in hoster plugin""" - __license__ = "GPLv3" - __authors__ = [("RazorWing", "muppetuk1@hotmail.com")] + __description = """FileParadox.in hoster plugin""" + __license = "GPLv3" + __authors = [("RazorWing", "muppetuk1@hotmail.com")] HOSTER_DOMAIN = "fileparadox.in" |