##// END OF EJS Templates
fix warning condition on notebook startup...
MinRK -
Show More
@@ -715,7 +715,8 b' class NotebookApp(BaseIPythonApplication):'
715 715
716 716 nbdir = os.path.abspath(self.notebook_manager.notebook_dir)
717 717 f = self.file_to_run
718 if f and f.startswith(nbdir):
718 if f:
719 if f.startswith(nbdir):
719 720 f = f[len(nbdir):]
720 721 else:
721 722 self.log.warn(
General Comments 0
You need to be logged in to leave comments. Login now