From af8a2afde1379fb713bb603980e330db5447069c Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Thu, 5 Sep 2019 11:33:56 +0200 Subject: [PATCH] Cosmetics (trivial) --- extra/shutils/drei.sh | 2 +- lib/core/settings.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/extra/shutils/drei.sh b/extra/shutils/drei.sh index dfd6da480..85d40379e 100755 --- a/extra/shutils/drei.sh +++ b/extra/shutils/drei.sh @@ -7,7 +7,7 @@ export SQLMAP_DREI=1 #for i in $(find . -iname "*.py" | grep -v __init__); do python3 -c 'import '`echo $i | cut -d '.' -f 2 | cut -d '/' -f 2- | sed 's/\//./g'`''; done -for i in $(find . -iname "*.py" | grep -v __init__); do PYTHONWARNINGS=all python3.7 -m compileall $i; done +for i in $(find . -iname "*.py" | grep -v __init__); do PYTHONWARNINGS=all python3.7 -m compileall $i | sed 's/Compiling/Checking/g'; done unset SQLMAP_DREI source `dirname "$0"`"/junk.sh" diff --git a/lib/core/settings.py b/lib/core/settings.py index 123e60afe..c4d35015d 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -18,7 +18,7 @@ from lib.core.enums import OS from thirdparty.six import unichr as _unichr # sqlmap version (...) -VERSION = "1.3.9.4" +VERSION = "1.3.9.5" 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)