diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-12-09 01:19:46 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-12-09 01:19:46 +0100 |
commit | 6151e81fa0b325dffda3da4228d5821e73db3ef3 (patch) | |
tree | 8c7fe8b00a52816ec8e5e9d4c91beb0c5aa727ba /module/plugins/crypter/HoerbuchIn.py | |
parent | Don't start unused periodical in some addons (diff) | |
download | pyload-6151e81fa0b325dffda3da4228d5821e73db3ef3.tar.xz |
Fix __version__ format in some plugins
Diffstat (limited to 'module/plugins/crypter/HoerbuchIn.py')
-rw-r--r-- | module/plugins/crypter/HoerbuchIn.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/crypter/HoerbuchIn.py b/module/plugins/crypter/HoerbuchIn.py index 4d4b8fbef..a347e4232 100644 --- a/module/plugins/crypter/HoerbuchIn.py +++ b/module/plugins/crypter/HoerbuchIn.py @@ -10,7 +10,7 @@ from module.plugins.Crypter import Crypter class HoerbuchIn(Crypter): __name__ = "HoerbuchIn" __type__ = "crypter" - __version__ = "0.6" + __version__ = "0.60" __pattern__ = r'http://(?:www\.)?hoerbuch\.in/(wp/horbucher/\d+/.+/|tp/out\.php\?.+|protection/folder_\d+\.html)' __config__ = [("use_subfolder", "bool", "Save package to subfolder", True), |