Minor language update

This commit is contained in:
Miroslav Stampar
2013-01-16 16:07:12 +01:00
parent 4bdc0a8a7f
commit 053b7d12b4
2 changed files with 2 additions and 2 deletions

View File

@@ -2008,7 +2008,7 @@ def _basicOptionValidation():
raise SqlmapSyntaxException(errMsg)
if conf.threads > MAX_NUMBER_OF_THREADS:
errMsg = "maximum number of used threads is %d avoiding possible connection issues" % MAX_NUMBER_OF_THREADS
errMsg = "maximum number of used threads is %d avoiding potential connection issues" % MAX_NUMBER_OF_THREADS
raise SqlmapSyntaxException(errMsg)
if conf.forms and not any((conf.url, conf.bulkFile)):