mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
fix for a bug reported by krasn@deventum.com
This commit is contained in:
parent
f09340fc89
commit
d9015ed800
|
@ -224,8 +224,8 @@ Alexander Kornbrust <ak@red-database-security.com>
|
||||||
Krzysztof Kotowicz <kkotowicz@gmail.com>
|
Krzysztof Kotowicz <kkotowicz@gmail.com>
|
||||||
for reporting a minor bug
|
for reporting a minor bug
|
||||||
|
|
||||||
Nicolas Krassas <krasn@ans.gr>
|
Nicolas Krassas <krasn@deventum.com>
|
||||||
for reporting a bug
|
for reporting a couple of bugs
|
||||||
|
|
||||||
Oliver Kuckertz <oliver.kuckertz@mologie.de>
|
Oliver Kuckertz <oliver.kuckertz@mologie.de>
|
||||||
for providing a minor patch
|
for providing a minor patch
|
||||||
|
|
|
@ -549,6 +549,9 @@ class Tag(PageElement):
|
||||||
val))
|
val))
|
||||||
self.attrs = map(convert, self.attrs)
|
self.attrs = map(convert, self.attrs)
|
||||||
|
|
||||||
|
# Reference: http://bytes.com/topic/python/answers/552874-py-2-5-bug-sgmllib
|
||||||
|
SGMLParser.convert_codepoint = lambda self, codepoint: unichr(codepoint)
|
||||||
|
|
||||||
def getString(self):
|
def getString(self):
|
||||||
if (len(self.contents) == 1
|
if (len(self.contents) == 1
|
||||||
and isinstance(self.contents[0], NavigableString)):
|
and isinstance(self.contents[0], NavigableString)):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user