Trivial removal of leftover

This commit is contained in:
Miroslav Stampar 2019-08-04 01:05:28 +02:00
parent a42a7c88bd
commit 1824e5b094
2 changed files with 1 additions and 2 deletions

View File

@ -4881,7 +4881,6 @@ def zeroDepthSearch(expression, value):
elif expression[index] == ')':
depth -= 1
elif depth == 0:
found = False
if value.startswith('[') and value.endswith(']'):
if re.search(value, expression[index:index + 1]):
retVal.append(index)

View File

@ -18,7 +18,7 @@ from lib.core.enums import OS
from thirdparty.six import unichr as _unichr
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
VERSION = "1.3.8.2"
VERSION = "1.3.8.3"
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)