code consistency

This commit is contained in:
Bernardo Damele
2013-02-15 00:17:13 +00:00
parent 515be4ee0b
commit 4727589135
3 changed files with 4 additions and 4 deletions

View File

@@ -3380,7 +3380,7 @@ def resetCookieJar(cookieJar):
content = readCachedFileContent(conf.loadCookies)
lines = filter(None, (line.strip() for line in content.split("\n") if not line.startswith('#')))
handle, filename = tempfile.mkstemp()
handle, filename = tempfile.mkstemp(prefix="sqlmapcj-")
os.close(handle)
with open(filename, "w+b") as f: