Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b78b56d commit 6d53d8dCopy full SHA for 6d53d8d
1 file changed
_sqlmap.py
@@ -60,7 +60,7 @@ def xmlRpcServe():
60
server = XMLRPCServer(cmdLineOptions.xmlRpcPort or XMLRPC_SERVER_PORT)
61
def emit(self, record):
62
message = stdoutencode(FORMATTER.format(record))
63
- sys.stdout.write("%s" % message)
+ sys.stdout.write("%s\n" % message.strip('\r'))
64
LOGGER_HANDLER.emit = types.MethodType(emit, LOGGER_HANDLER, type(LOGGER_HANDLER))
65
sys.stdout = StringIO.StringIO()
66
sys.stderr = StringIO.StringIO()
0 commit comments