diff options
Diffstat (limited to 'module/plugins/crypter/ShSt.py')
-rw-r--r-- | module/plugins/crypter/ShSt.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/crypter/ShSt.py b/module/plugins/crypter/ShSt.py index a65522aea..05a5518d3 100644 --- a/module/plugins/crypter/ShSt.py +++ b/module/plugins/crypter/ShSt.py @@ -22,9 +22,9 @@ class ShSt(Crypter): def decrypt(self, pyfile): - # if we use curl as a user agent, we will get a straight redirect (no waiting!) + #: If we use curl as a user agent, we will get a straight redirect (no waiting!) self.req.http.c.setopt(pycurl.USERAGENT, "curl/7.42.1") - # fetch the target URL + #: Fetch the target URL header = self.load(self.pyfile.url, just_header = True, decode = False) target_url = header["location"] self.urls.append(target_url) |