mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 01:26:42 +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>
|
||||
for reporting a minor bug
|
||||
|
||||
Nicolas Krassas <krasn@ans.gr>
|
||||
for reporting a bug
|
||||
Nicolas Krassas <krasn@deventum.com>
|
||||
for reporting a couple of bugs
|
||||
|
||||
Oliver Kuckertz <oliver.kuckertz@mologie.de>
|
||||
for providing a minor patch
|
||||
|
|
|
@ -549,6 +549,9 @@ class Tag(PageElement):
|
|||
val))
|
||||
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):
|
||||
if (len(self.contents) == 1
|
||||
and isinstance(self.contents[0], NavigableString)):
|
||||
|
|
Loading…
Reference in New Issue
Block a user