mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
Minor cosmetics
This commit is contained in:
parent
81caf14b6d
commit
0e22a0ca5f
1 changed files with 2 additions and 2 deletions
|
|
@ -636,11 +636,11 @@ class Dump(object):
|
|||
|
||||
for column in dbColumnsDict.keys():
|
||||
if colConsider == "1":
|
||||
colConsiderStr = "s like '%s' were" % unsafeSQLIdentificatorNaming(column)
|
||||
colConsiderStr = "s LIKE '%s' were" % unsafeSQLIdentificatorNaming(column)
|
||||
else:
|
||||
colConsiderStr = " '%s' was" % unsafeSQLIdentificatorNaming(column)
|
||||
|
||||
msg = "Column%s found in the " % colConsiderStr
|
||||
msg = "column%s found in the " % colConsiderStr
|
||||
msg += "following databases:"
|
||||
self._write(msg)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue