diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-04-11 11:55:03 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2014-04-21 17:17:41 +0200 |
commit | c46b882d9124fab8795b6094d928e76f6d21ae8c (patch) | |
tree | db58d7e3ca34af104ad603cdd7fad81dfd74be92 /module/plugins/crypter | |
parent | Fix __author_name__ and __author_mail__ (diff) | |
download | pyload-c46b882d9124fab8795b6094d928e76f6d21ae8c.tar.xz |
Fix __description__
Merges vuolter/pyload@74bcc70
(cherry picked from commit cca4127f9853ab029cbf0b55fedced124400952d)
Conflicts:
module/plugins/Account.py
module/plugins/Container.py
module/plugins/Crypter.py
module/plugins/Hook.py
module/plugins/Plugin.py
module/plugins/container/LinkList.py
pyload/plugins/crypter/HoerbuchIn.py
Diffstat (limited to 'module/plugins/crypter')
-rw-r--r-- | module/plugins/crypter/DailymotionBatch.py | 2 | ||||
-rw-r--r-- | module/plugins/crypter/DlProtectCom.py | 2 | ||||
-rw-r--r-- | module/plugins/crypter/NosvideoCom.py | 2 | ||||
-rw-r--r-- | module/plugins/crypter/TnyCz.py | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/module/plugins/crypter/DailymotionBatch.py b/module/plugins/crypter/DailymotionBatch.py index ad1cae67f..2b692f92a 100644 --- a/module/plugins/crypter/DailymotionBatch.py +++ b/module/plugins/crypter/DailymotionBatch.py @@ -30,7 +30,7 @@ class DailymotionBatch(Crypter): __type__ = "crypter" __pattern__ = r"https?://(?:www\.)?dailymotion\.com/((playlists/)?(?P<TYPE>playlist|user)/)?(?P<ID>[\w^_]+)(?(TYPE)|#)" __version__ = "0.01" - __description__ = """Dailymotion channel & playlist decrypter""" + __description__ = """Dailymotion.com channel & playlist decrypter""" __author_name__ = "Walter Purcaro" __author_mail__ = "vuolter@gmail.com" diff --git a/module/plugins/crypter/DlProtectCom.py b/module/plugins/crypter/DlProtectCom.py index d93455a55..bb5f68039 100644 --- a/module/plugins/crypter/DlProtectCom.py +++ b/module/plugins/crypter/DlProtectCom.py @@ -29,7 +29,7 @@ class DlProtectCom(SimpleCrypter): __type__ = "crypter" __pattern__ = r"http://(?:www\.)?dl-protect\.com/((en|fr)/)?(?P<ID>\w+)" __version__ = "0.01" - __description__ = """dl-protect.com decrypter plugin""" + __description__ = """Dl-protect.com decrypter plugin""" __author_name__ = "Walter Purcaro" __author_mail__ = "vuolter@gmail.com" diff --git a/module/plugins/crypter/NosvideoCom.py b/module/plugins/crypter/NosvideoCom.py index eae836038..f85f33844 100644 --- a/module/plugins/crypter/NosvideoCom.py +++ b/module/plugins/crypter/NosvideoCom.py @@ -6,7 +6,7 @@ class NosvideoCom(SimpleCrypter): __type__ = "crypter" __pattern__ = r"http://(?:www\.)?nosvideo\.com/\?v=\w+" __version__ = "0.01" - __description__ = """Nosvideo.com Plugin""" + __description__ = """Nosvideo.com decrypter plugin""" __author_name__ = "igel" __author_mail__ = "igelkun@myopera.com" diff --git a/module/plugins/crypter/TnyCz.py b/module/plugins/crypter/TnyCz.py index 444eb53f6..aeecea9ea 100644 --- a/module/plugins/crypter/TnyCz.py +++ b/module/plugins/crypter/TnyCz.py @@ -27,7 +27,7 @@ class TnyCz(SimpleCrypter): __type__ = "crypter" __pattern__ = r"http://(?:www\.)?tny\.cz/\w+" __version__ = "0.01" - __description__ = """Tny.cz Plugin""" + __description__ = """Tny.cz decrypter plugin""" __author_name__ = "Walter Purcaro" __author_mail__ = "vuolter@gmail.com" |