Better message formatiing

This commit is contained in:
Dmitry Trofimov
2016-07-01 18:02:57 +02:00
parent c5195de2e9
commit e34f964c45
+1 -1
View File
@@ -287,7 +287,7 @@ def start_console_server(host, port, interpreter):
server = XMLRPCServer((host, port), logRequests=False, allow_none=True)
except:
sys.stderr.write('Error starting server with host: %s, port: %s, client_port: %s\n' % (host, port, interpreter.client_port))
sys.stderr.write('Error starting server with host: "%s", port: "%s", client_port: "%s"\n' % (host, port, interpreter.client_port))
sys.stderr.flush()
raise