##// END OF EJS Templates
include the # of active kernels in server info
Paul Ivanov -
Show More
@@ -711,8 +711,9 b' class NotebookApp(BaseIPythonApplication):'
711 711
712 712 def notebook_info(self):
713 713 "Return the current working directory and the server url information"
714 mgr_info = self.notebook_manager.info_string() + "\n"
715 return mgr_info +"The IPython Notebook is running at: %s" % self._url
714 info = self.notebook_manager.info_string() + "\n"
715 info += "%d active kernels \n" % len(self.kernel_manager._kernels)
716 return info + "The IPython Notebook is running at: %s" % self._url
716 717
717 718 def start(self):
718 719 """ Start the IPython Notebook server app, after initialization
General Comments 0
You need to be logged in to leave comments. Login now