From 0e65043c84314f0ef3c76816ba0613c751906f4d Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Fri, 3 Jun 2016 09:48:49 +0200 Subject: [PATCH] Minor adjustment --- lib/controller/action.py | 3 --- lib/core/settings.py | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/controller/action.py b/lib/controller/action.py index df6145f80..79544cc82 100644 --- a/lib/controller/action.py +++ b/lib/controller/action.py @@ -48,9 +48,6 @@ def action(): elif kb.nullConnection: errMsg += ". You can try to rerun without using optimization " errMsg += "switch '%s'" % ("-o" if conf.optimize else "--null-connection") - else: - errMsg += ". Support for this DBMS will be implemented at " - errMsg += "some point" raise SqlmapUnsupportedDBMSException(errMsg) diff --git a/lib/core/settings.py b/lib/core/settings.py index bc0d13c13..611ff0741 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.6.15" +VERSION = "1.0.6.16" REVISION = getRevisionNumber() STABLE = VERSION.count('.') <= 2 VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")