We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 691f101 + b74003b commit 28d5454Copy full SHA for 28d5454
notebook/notebookapp.py
@@ -1388,6 +1388,8 @@ def start(self):
1388
This method takes no arguments so all configuration and initialization
1389
must be done prior to calling this method."""
1390
1391
+ super(NotebookApp, self).start()
1392
+
1393
if not self.allow_root:
1394
# check if we are running as root, and abort if it's not allowed
1395
try:
@@ -1398,8 +1400,6 @@ def start(self):
1398
1400
self.log.critical("Running as root is not recommended. Use --allow-root to bypass.")
1399
1401
self.exit(1)
1402
- super(NotebookApp, self).start()
-
1403
info = self.log.info
1404
for line in self.notebook_info().split("\n"):
1405
info(line)
0 commit comments