layout adjustment

This commit is contained in:
Bernardo Damele 2013-01-19 17:11:16 +00:00
parent dcf2dcd03d
commit 6a62292a3f

View File

@ -168,7 +168,7 @@ def liveTest():
result = runCase(switches, parse)
test_case_fd = codecs.open(os.path.join(paths.SQLMAP_OUTPUT_PATH, "test_case"), "wb", UNICODE_ENCODING)
test_case_fd.write(name)
test_case_fd.write("%s\n" % name)
if result:
logger.info("test passed")
@ -186,7 +186,7 @@ def liveTest():
errMsg += " - SQL injection not detected"
logger.error(errMsg)
test_case_fd.write("\n%s" % errMsg)
test_case_fd.write("%s\n" % errMsg)
if failedParseOn:
console_output_fd = codecs.open(os.path.join(paths.SQLMAP_OUTPUT_PATH, "console_output"), "wb", UNICODE_ENCODING)