mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
code consistency
This commit is contained in:
parent
515be4ee0b
commit
4727589135
3 changed files with 4 additions and 4 deletions
|
|
@ -58,7 +58,7 @@ class BigArray(list):
|
|||
return ValueError, "%s is not in list" % value
|
||||
|
||||
def _dump(self, value):
|
||||
handle, filename = tempfile.mkstemp()
|
||||
handle, filename = tempfile.mkstemp(prefix="sqlmapba-")
|
||||
self.filenames.add(filename)
|
||||
os.close(handle)
|
||||
with open(filename, "w+b") as fp:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue