diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-04-11 11:55:03 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2014-04-11 11:55:03 +0200 |
commit | cca4127f9853ab029cbf0b55fedced124400952d (patch) | |
tree | 28533be5a96abf5d852da20ad17ce7795eacab8f /module/plugins/internal | |
parent | Fix __author_name__ and __author_mail__ (diff) | |
download | pyload-cca4127f9853ab029cbf0b55fedced124400952d.tar.xz |
Fix __description__
Merges vuolter/pyload@74bcc70
Diffstat (limited to 'module/plugins/internal')
-rw-r--r-- | module/plugins/internal/SimpleCrypter.py | 2 | ||||
-rw-r--r-- | module/plugins/internal/SimpleHoster.py | 2 | ||||
-rw-r--r-- | module/plugins/internal/XFSPAccount.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/internal/SimpleCrypter.py b/module/plugins/internal/SimpleCrypter.py index 78c7158bf..dda1f68b6 100644 --- a/module/plugins/internal/SimpleCrypter.py +++ b/module/plugins/internal/SimpleCrypter.py @@ -29,7 +29,7 @@ class SimpleCrypter(Crypter): __version__ = "0.07" __pattern__ = None __type__ = "crypter" - __description__ = """Base crypter plugin""" + __description__ = """Simple decrypter plugin""" __author_name__ = ("stickell", "zoidberg") __author_mail__ = ("l.stickell@yahoo.it", "zoidberg@mujmail.cz") """ diff --git a/module/plugins/internal/SimpleHoster.py b/module/plugins/internal/SimpleHoster.py index 46d0a9517..f10433e78 100644 --- a/module/plugins/internal/SimpleHoster.py +++ b/module/plugins/internal/SimpleHoster.py @@ -166,7 +166,7 @@ class SimpleHoster(Hoster): __version__ = "0.33" __pattern__ = None __type__ = "hoster" - __description__ = """Base hoster plugin""" + __description__ = """Simple hoster plugin""" __author_name__ = ("zoidberg", "stickell") __author_mail__ = ("zoidberg@mujmail.cz", "l.stickell@yahoo.it") """ diff --git a/module/plugins/internal/XFSPAccount.py b/module/plugins/internal/XFSPAccount.py index bc6061e6a..787e7fa9e 100644 --- a/module/plugins/internal/XFSPAccount.py +++ b/module/plugins/internal/XFSPAccount.py @@ -28,7 +28,7 @@ class XFSPAccount(Account): __name__ = "XFSPAccount" __version__ = "0.05" __type__ = "account" - __description__ = """XFileSharingPro account base""" + __description__ = """XFileSharingPro base account plugin""" __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" |