This commit is contained in:
Miroslav Stampar 2020-01-07 09:31:54 +01:00
parent 49afd47c13
commit 0ea39098bd
2 changed files with 3 additions and 3 deletions

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.4.1.8"
VERSION = "1.4.1.9"
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)

View File

@ -595,7 +595,7 @@ class Tag(PageElement):
stopNode = self._lastRecursiveChild().next
strings = []
current = self.contents[0]
while current is not stopNode:
while current and current is not stopNode:
if isinstance(current, NavigableString):
strings.append(current.strip())
current = current.next
@ -897,7 +897,7 @@ class Tag(PageElement):
return # Note: https://stackoverflow.com/a/30217723 (PEP 479)
stopNode = self._lastRecursiveChild().next
current = self.contents[0]
while current is not stopNode:
while current and current is not stopNode:
yield current
current = current.next