From 304f2ed308c635079ab71b5e863ed570ee268070 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Wed, 25 May 2016 15:32:17 +0200 Subject: [PATCH] Minor language patch --- lib/core/common.py | 2 +- lib/core/settings.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/core/common.py b/lib/core/common.py index b19515129..c195d2680 100644 --- a/lib/core/common.py +++ b/lib/core/common.py @@ -730,7 +730,7 @@ def getManualDirectories(): infoMsg = "retrieved the web server document root: '%s'" % directories logger.info(infoMsg) else: - warnMsg = "unable to retrieve automatically the web server " + warnMsg = "unable to automatically retrieve the web server " warnMsg += "document root" logger.warn(warnMsg) diff --git a/lib/core/settings.py b/lib/core/settings.py index 7c44726a1..98586a8f4 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -19,7 +19,7 @@ from lib.core.enums import OS from lib.core.revision import getRevisionNumber # sqlmap version (...) -VERSION = "1.0.5.67" +VERSION = "1.0.5.68" REVISION = getRevisionNumber() STABLE = VERSION.count('.') <= 2 VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")