diff options
author | 2016-03-05 22:56:08 +0100 | |
---|---|---|
committer | 2016-03-05 22:56:08 +0100 | |
commit | 22d223c9a94976c4fb1b79420e5646a46874f2a0 (patch) | |
tree | f571a05f004ff9f0002d3a73e4b34dfc7742e1e7 /module/plugins/crypter/FilecryptCc.py | |
parent | [OneFichierCom] fix #2369 (diff) | |
download | pyload-22d223c9a94976c4fb1b79420e5646a46874f2a0.tar.xz |
fix #2373
Diffstat (limited to 'module/plugins/crypter/FilecryptCc.py')
-rw-r--r-- | module/plugins/crypter/FilecryptCc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/crypter/FilecryptCc.py b/module/plugins/crypter/FilecryptCc.py index 1b1159e36..3c57e5dfc 100644 --- a/module/plugins/crypter/FilecryptCc.py +++ b/module/plugins/crypter/FilecryptCc.py @@ -7,7 +7,7 @@ import binascii import re import urlparse -import Crypto.Cipher +import Crypto.Cipher.AES from module.plugins.internal.Crypter import Crypter from module.plugins.captcha.ReCaptcha import ReCaptcha @@ -17,7 +17,7 @@ from module.plugins.captcha.SolveMedia import SolveMedia class FilecryptCc(Crypter): __name__ = "FilecryptCc" __type__ = "crypter" - __version__ = "0.24" + __version__ = "0.25" __status__ = "testing" __pattern__ = r'https?://(?:www\.)?filecrypt\.cc/Container/\w+' |