mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
Minor language update
This commit is contained in:
parent
0ce2128a9b
commit
536d9a597e
|
@ -332,7 +332,7 @@ def errorUse(expression, dump=False):
|
||||||
stopLimit = int(count)
|
stopLimit = int(count)
|
||||||
|
|
||||||
infoMsg = "used SQL query returns "
|
infoMsg = "used SQL query returns "
|
||||||
infoMsg += "%d entries" % stopLimit
|
infoMsg += "%d %s" % (stopLimit, "entries" if stopLimit > 1 else "entry")
|
||||||
logger.info(infoMsg)
|
logger.info(infoMsg)
|
||||||
|
|
||||||
elif count and not count.isdigit():
|
elif count and not count.isdigit():
|
||||||
|
|
|
@ -258,7 +258,7 @@ def unionUse(expression, unpack=True, dump=False):
|
||||||
stopLimit = int(count)
|
stopLimit = int(count)
|
||||||
|
|
||||||
infoMsg = "used SQL query returns "
|
infoMsg = "used SQL query returns "
|
||||||
infoMsg += "%d entries" % stopLimit
|
infoMsg += "%d %s" % (stopLimit, "entries" if stopLimit > 1 else "entry")
|
||||||
logger.info(infoMsg)
|
logger.info(infoMsg)
|
||||||
|
|
||||||
elif count and (not isinstance(count, basestring) or not count.isdigit()):
|
elif count and (not isinstance(count, basestring) or not count.isdigit()):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user