From c2bac51c4f62cac03d01a2b51c887ecf071fe37a Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Wed, 5 Apr 2023 09:33:17 +0200 Subject: [PATCH] Minor update --- lib/core/settings.py | 2 +- lib/core/update.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/core/settings.py b/lib/core/settings.py index 617b8e8e6..caa8b1e41 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -20,7 +20,7 @@ from thirdparty import six from thirdparty.six import unichr as _unichr # sqlmap version (...) -VERSION = "1.7.4.0" +VERSION = "1.7.4.1" TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable" TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34} VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE) diff --git a/lib/core/update.py b/lib/core/update.py index dee1639eb..2fe6f12e1 100644 --- a/lib/core/update.py +++ b/lib/core/update.py @@ -71,7 +71,7 @@ def update(): logger.warning(warnMsg) if VERSION == getLatestRevision(): - logger.info("already at the latest revision '%s'" % getRevisionNumber()) + logger.info("already at the latest revision '%s'" % (getRevisionNumber() or VERSION)) return message = "do you want to try to fetch the latest 'zipball' from repository and extract it (experimental) ? [y/N]"