Show More
@@ -263,9 +263,7 b' class IPythonNotebookApp(BaseIPythonApplication):' | |||||
263 |
|
263 | |||
264 | def start(self): |
|
264 | def start(self): | |
265 | ip = self.ip if self.ip else '[all ip addresses on your system]' |
|
265 | ip = self.ip if self.ip else '[all ip addresses on your system]' | |
266 | proto = 'http' |
|
266 | proto = 'https' if self.certfile else 'http' | |
267 | if self.certfile: |
|
|||
268 | proto = 'https' |
|
|||
269 | self.log.info("The IPython Notebook is running at: %s://%s:%i" % (proto, |
|
267 | self.log.info("The IPython Notebook is running at: %s://%s:%i" % (proto, | |
270 | ip, |
|
268 | ip, | |
271 | self.port)) |
|
269 | self.port)) |
General Comments 0
You need to be logged in to leave comments.
Login now