mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Minor deprecation patch (drei)
This commit is contained in:
parent
aa2682ec16
commit
fd4becf389
2 changed files with 2 additions and 2 deletions
|
|
@ -78,7 +78,7 @@ class ReqHandler(_BaseHTTPServer.BaseHTTPRequestHandler):
|
|||
self.send_header(HTTP_HEADER.CONNECTION, "close")
|
||||
|
||||
if content is not None:
|
||||
for match in re.finditer(b"<\!(\w+)\!>", content):
|
||||
for match in re.finditer(b"<!(\w+)!>", content):
|
||||
name = match.group(1)
|
||||
_ = getattr(self, "_%s" % name.lower(), None)
|
||||
if _:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue