diff options
author | 2014-11-26 22:46:44 +0100 | |
---|---|---|
committer | 2014-11-26 22:46:44 +0100 | |
commit | f513f69f09b091f7c29f607d5c32ff8e35e8282a (patch) | |
tree | 58e77618449280c4ae1b1f6095d80a352ea82d31 /pyload/plugins/crypter/FilecryptCc.py | |
parent | Merge branch 'stable' into 0.4.10 (diff) | |
download | pyload-f513f69f09b091f7c29f607d5c32ff8e35e8282a.tar.xz |
Fix previous merge
Diffstat (limited to 'pyload/plugins/crypter/FilecryptCc.py')
-rw-r--r-- | pyload/plugins/crypter/FilecryptCc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/plugins/crypter/FilecryptCc.py b/pyload/plugins/crypter/FilecryptCc.py index dedd284b3..cb00da5e9 100644 --- a/pyload/plugins/crypter/FilecryptCc.py +++ b/pyload/plugins/crypter/FilecryptCc.py @@ -6,7 +6,7 @@ import re from Crypto.Cipher import AES -from module.plugins.Crypter import Crypter +from pyload.plugins.Crypter import Crypter class FilecryptCc(Crypter): @@ -18,7 +18,7 @@ class FilecryptCc(Crypter): __description__ = """Filecrypt.cc decrypter plugin""" __license__ = "GPLv3" - __authors__ = [("zapp-brannigan", "")] + __authors__ = [("zapp-brannigan", "fuerst.reinje@web.de")] # URL_REPLACEMENTS = [(r'.html$', ""), (r'$', ".html")] #@TODO: Extend SimpleCrypter |