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