mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-21 15:52:26 +01:00
Minor bug fix
This commit is contained in:
parent
915d3441e9
commit
2840f20605
1 changed files with 3 additions and 3 deletions
|
|
@ -1089,9 +1089,9 @@ def getConsoleWidth(default=80):
|
|||
return width if width else default
|
||||
|
||||
def parseXmlFile(xmlFile, handler):
|
||||
file = open(paths.GENERIC_XML)
|
||||
content = file.read()
|
||||
xfile = open(xmlFile)
|
||||
content = xfile.read()
|
||||
stream = StringIO(content)
|
||||
parse(stream, handler)
|
||||
stream.close()
|
||||
file.close()
|
||||
xfile.close()
|
||||
|
|
|
|||
Loading…
Reference in a new issue