##// 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 def init_sockets(self):
142 def init_sockets(self):
143 # Create a context, a session, and the kernel sockets.
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 context = zmq.Context.instance()
145 context = zmq.Context.instance()
146 # Uncomment this to try closing the context.
146 # Uncomment this to try closing the context.
147 # atexit.register(context.term)
147 # atexit.register(context.term)
General Comments 0
You need to be logged in to leave comments. Login now