Merge pull request #3333 from t-8ch/patch-1

notebookapp: add missing whitespace to warnings
Matthias Bussonnier 13 years ago
commit 60b35be373

@ -545,10 +545,10 @@ class NotebookApp(BaseIPythonApplication):
if not self.ip:
warning = "WARNING: The notebook server is listening on all IP addresses"
if ssl_options is None:
self.log.critical(warning + " and not using encryption. This"
self.log.critical(warning + " and not using encryption. This "
"is not recommended.")
if not self.password and not self.read_only:
self.log.critical(warning + "and not using authentication."
self.log.critical(warning + " and not using authentication. "
"This is highly insecure and not recommended.")
success = None
for port in random_ports(self.port, self.port_retries+1):

Loading…
Cancel
Save