diff options
author | Hadrien Theveneau <theveneau@gmail.com> | 2015-10-27 18:42:22 +0100 |
---|---|---|
committer | Hadrien Theveneau <theveneau@gmail.com> | 2015-10-28 02:52:22 +0100 |
commit | 421a7c9c87997a505855bcafa6a8e0e4702cb810 (patch) | |
tree | 672764f38e104485d0478405c5e8c6e108a39be7 | |
parent | Correction of some errors in OCR.py (diff) | |
download | pyload-421a7c9c87997a505855bcafa6a8e0e4702cb810.tar.xz |
Show key in debug log in DlProtectCom.py
-rw-r--r-- | module/plugins/crypter/DlProtectCom.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/module/plugins/crypter/DlProtectCom.py b/module/plugins/crypter/DlProtectCom.py index 32dfd4612..a3b24a1d6 100644 --- a/module/plugins/crypter/DlProtectCom.py +++ b/module/plugins/crypter/DlProtectCom.py @@ -38,6 +38,7 @@ class DlProtectCom(SimpleCrypter): post_req = {'key' : re.search(r'name="key" value="(.+?)"', self.data).group(1), 'submitform': ""} + self.log_debug("Key: %s" % post_req['key']) if "Please click on continue to see the links" in self.data: post_req['submitform'] = "Continue" |