From 20c5f9a03093a78673cc2cef6272be7ddc367196 Mon Sep 17 00:00:00 2001 From: Bernardo Damele Date: Fri, 15 Feb 2013 09:29:36 +0000 Subject: [PATCH] consistency fix --- lib/utils/hash.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/utils/hash.py b/lib/utils/hash.py index d3bee496f..f856da130 100644 --- a/lib/utils/hash.py +++ b/lib/utils/hash.py @@ -305,12 +305,12 @@ def storeHashesToFile(attack_dict): if not attack_dict: return - handle, filename = tempfile.mkstemp(suffix=".txt") + handle, filename = tempfile.mkstemp(prefix="sqlmaphashes-", suffix=".txt") os.close(handle) - warnMsg = "writing hashes to file '%s' " % filename - warnMsg += "for eventual further processing with other tools" - logger.warn(warnMsg) + infoMsg = "writing hashes to file '%s' " % filename + infoMsg += "for eventual further processing with other tools" + logger.info(infoMsg) items = set()