diff options
Diffstat (limited to 'pyload/plugin/account/FilerNet.py')
-rw-r--r-- | pyload/plugin/account/FilerNet.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/pyload/plugin/account/FilerNet.py b/pyload/plugin/account/FilerNet.py index f3cc42367..ac624a4b3 100644 --- a/pyload/plugin/account/FilerNet.py +++ b/pyload/plugin/account/FilerNet.py @@ -7,13 +7,13 @@ from pyload.plugin.Account import Account class FilerNet(Account): - __name__ = "FilerNet" - __type__ = "account" - __version__ = "0.04" + __name = "FilerNet" + __type = "account" + __version = "0.04" - __description__ = """Filer.net account plugin""" - __license__ = "GPLv3" - __authors__ = [("stickell", "l.stickell@yahoo.it")] + __description = """Filer.net account plugin""" + __license = "GPLv3" + __authors = [("stickell", "l.stickell@yahoo.it")] TOKEN_PATTERN = r'_csrf_token" value="([^"]+)" />' |