##// END OF EJS Templates
fix typo in log message format in zmq.kernelapp
MinRK -
Show More
@@ -141,7 +141,7 b' class KernelApp(BaseIPythonApplication):'
141 141
142 142 def init_sockets(self):
143 143 # Create a context, a session, and the kernel sockets.
144 self.log.info("Starting the kernel at pid:", os.getpid())
144 self.log.info("Starting the kernel at pid: %i", os.getpid())
145 145 context = zmq.Context.instance()
146 146 # Uncomment this to try closing the context.
147 147 # atexit.register(context.term)
General Comments 0
You need to be logged in to leave comments. Login now