diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-22 21:18:24 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-22 21:18:24 +0200 |
commit | 2e13b1e9efedfbd39bbc5a0cee8795f6c46f842b (patch) | |
tree | 96d8fd7985fec852baae94f818343ffbd9311269 | |
parent | Merge pull request #1366 from Gutz-Pilz/patch-1 (diff) | |
download | pyload-2e13b1e9efedfbd39bbc5a0cee8795f6c46f842b.tar.xz |
[FilecryptCc] Version up
-rw-r--r-- | module/plugins/crypter/FilecryptCc.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/module/plugins/crypter/FilecryptCc.py b/module/plugins/crypter/FilecryptCc.py index ca4cf57cb..fdb65b657 100644 --- a/module/plugins/crypter/FilecryptCc.py +++ b/module/plugins/crypter/FilecryptCc.py @@ -1,5 +1,7 @@ # -*- coding: utf-8 -*- -# http://filecrypt.cc/Container/64E039F859.html +# +# Test links: +# http://filecrypt.cc/Container/64E039F859.html import binascii import re @@ -14,7 +16,7 @@ from module.plugins.internal.CaptchaService import ReCaptcha class FilecryptCc(Crypter): __name__ = "FilecryptCc" __type__ = "crypter" - __version__ = "0.12" + __version__ = "0.13" __pattern__ = r'https?://(?:www\.)?filecrypt\.cc/Container/\w+' |