##// END OF EJS Templates
promote "no terminals" message to warn...
Min RK -
Show More
@@ -876,7 +876,8 b' class NotebookApp(BaseIPythonApplication):'
876 876 initialize(self.web_app)
877 877 self.web_app.settings['terminals_available'] = True
878 878 except ImportError as e:
879 self.log.info("Terminals not available (error was %s)", e)
879 log = self.log.debug if sys.platform == 'win32' else self.log.warn
880 log("Terminals not available (error was %s)", e)
880 881
881 882 def init_signal(self):
882 883 if not sys.platform.startswith('win'):
General Comments 0
You need to be logged in to leave comments. Login now