diff options
author | synweap15 <shamdog+github@gmail.com> | 2014-11-03 14:42:05 +0100 |
---|---|---|
committer | synweap15 <shamdog+github@gmail.com> | 2014-11-03 14:42:05 +0100 |
commit | 168f175ce4765dec7e847c45d95e4babe20a7193 (patch) | |
tree | 97779207ab091862dba42ccb4a25632aaf6cd993 /module/plugins | |
parent | fix to work with python 2.5 (diff) | |
download | pyload-168f175ce4765dec7e847c45d95e4babe20a7193.tar.xz |
New __authors__ key, added __license__
Diffstat (limited to 'module/plugins')
-rw-r--r-- | module/plugins/accounts/NoPremiumPl.py | 4 | ||||
-rw-r--r-- | module/plugins/hooks/NoPremiumPl.py | 4 | ||||
-rw-r--r-- | module/plugins/hoster/NoPremiumPl.py | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/module/plugins/accounts/NoPremiumPl.py b/module/plugins/accounts/NoPremiumPl.py index bf1aec841..f2223b7d9 100644 --- a/module/plugins/accounts/NoPremiumPl.py +++ b/module/plugins/accounts/NoPremiumPl.py @@ -13,8 +13,8 @@ class NoPremiumPl(Account): __version__ = "0.01" __type__ = "account" __description__ = "NoPremium.pl account plugin" - __author_name__ = ("goddie") - __author_mail__ = ("dev@nopremium.pl") + __license__ = "GPLv3" + __authors__ = [("goddie", "dev@nopremium.pl")] _api_url = "http://crypt.nopremium.pl" diff --git a/module/plugins/hooks/NoPremiumPl.py b/module/plugins/hooks/NoPremiumPl.py index 757af6037..f60cb3dd6 100644 --- a/module/plugins/hooks/NoPremiumPl.py +++ b/module/plugins/hooks/NoPremiumPl.py @@ -17,8 +17,8 @@ class NoPremiumPl(MultiHoster): ("interval", "int", "Reload supported hosts interval in hours (0 to disable)", "24")] __description__ = "NoPremium.pl hook" - __author_name__ = ("goddie") - __author_mail__ = ("dev@nopremium.pl") + __license__ = "GPLv3" + __authors__ = [("goddie", "dev@nopremium.pl")] def getHoster(self): hostings = loads(getURL("https://www.nopremium.pl/clipboard.php?json=3").strip()) diff --git a/module/plugins/hoster/NoPremiumPl.py b/module/plugins/hoster/NoPremiumPl.py index 1bdd6eda0..f4f7ba56a 100644 --- a/module/plugins/hoster/NoPremiumPl.py +++ b/module/plugins/hoster/NoPremiumPl.py @@ -11,8 +11,8 @@ class NoPremiumPl(SimpleHoster): __pattern__ = r"https?://direct\.nopremium\.pl.*" __description__ = "NoPremium.pl hoster plugin" - __author_name__ = ("goddie") - __author_mail__ = ("dev@nopremium.pl") + __license__ = "GPLv3" + __authors__ = [("goddie", "dev@nopremium.pl")] _api_url = "http://crypt.nopremium.pl" |