diff options
author | 2014-04-11 11:50:52 +0200 | |
---|---|---|
committer | 2014-04-21 17:16:42 +0200 | |
commit | 8dbe6073781bb0e9425f17cd5e7ce7bf525f20c6 (patch) | |
tree | 3eaf4a773633502b712d3a74a3348fee298feb32 /pyload/plugins/internal | |
parent | RyushareCom: Code cosmetics (diff) | |
download | pyload-8dbe6073781bb0e9425f17cd5e7ce7bf525f20c6.tar.xz |
Fix __author_name__ and __author_mail__
Merges vuolter/pyload@6c57a37
(cherry picked from commit ce955b6c04f6ddaab1696c6cabf5e0aa83cbf846)
Conflicts:
module/plugins/Account.py
module/plugins/Container.py
module/plugins/Crypter.py
module/plugins/Hoster.py
module/plugins/hooks/MultiDebridCom.py
module/plugins/hooks/UnrestrictLi.py
Diffstat (limited to 'pyload/plugins/internal')
-rw-r--r-- | pyload/plugins/internal/DeadCrypter.py | 4 | ||||
-rw-r--r-- | pyload/plugins/internal/DeadHoster.py | 4 | ||||
-rw-r--r-- | pyload/plugins/internal/XFSPAccount.py | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/pyload/plugins/internal/DeadCrypter.py b/pyload/plugins/internal/DeadCrypter.py index 51e24a00a..772c38113 100644 --- a/pyload/plugins/internal/DeadCrypter.py +++ b/pyload/plugins/internal/DeadCrypter.py @@ -7,8 +7,8 @@ class DeadCrypter(_Crypter): __pattern__ = r"" __version__ = "0.01" __description__ = """Crypter is no longer available""" - __author_name__ = ("stickell") - __author_mail__ = ("l.stickell@yahoo.it") + __author_name__ = "stickell" + __author_mail__ = "l.stickell@yahoo.it" def setup(self): self.fail("Crypter is no longer available") diff --git a/pyload/plugins/internal/DeadHoster.py b/pyload/plugins/internal/DeadHoster.py index ba6abc0c5..9fb2d155e 100644 --- a/pyload/plugins/internal/DeadHoster.py +++ b/pyload/plugins/internal/DeadHoster.py @@ -12,8 +12,8 @@ class DeadHoster(_Hoster): __pattern__ = r"" __version__ = "0.11" __description__ = """Hoster is no longer available""" - __author_name__ = ("zoidberg") - __author_mail__ = ("zoidberg@mujmail.cz") + __author_name__ = "zoidberg" + __author_mail__ = "zoidberg@mujmail.cz" def setup(self): self.fail("Hoster is no longer available") diff --git a/pyload/plugins/internal/XFSPAccount.py b/pyload/plugins/internal/XFSPAccount.py index e4f211216..bc6061e6a 100644 --- a/pyload/plugins/internal/XFSPAccount.py +++ b/pyload/plugins/internal/XFSPAccount.py @@ -29,8 +29,8 @@ class XFSPAccount(Account): __version__ = "0.05" __type__ = "account" __description__ = """XFileSharingPro account base""" - __author_name__ = ("zoidberg") - __author_mail__ = ("zoidberg@mujmail.cz") + __author_name__ = "zoidberg" + __author_mail__ = "zoidberg@mujmail.cz" MAIN_PAGE = None |