mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Fixes #4733
This commit is contained in:
parent
795b9e6521
commit
fa05878712
2 changed files with 2 additions and 2 deletions
|
|
@ -1275,7 +1275,7 @@ class Connect(object):
|
|||
|
||||
while True:
|
||||
try:
|
||||
compile(getBytes(conf.evalCode.replace(';', '\n')), "", "exec")
|
||||
compile(getBytes(re.sub(r"\s*;\s*", "\n", conf.evalCode)), "", "exec")
|
||||
except SyntaxError as ex:
|
||||
if ex.text:
|
||||
original = replacement = ex.text.strip()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue