##// END OF EJS Templates
Merge pull request #4546 from minrk/not-in-dir-warning...
Matthias Bussonnier -
r13643:29626775 merge
parent child Browse files
Show More
@@ -715,7 +715,8 class NotebookApp(BaseIPythonApplication):
715
715
716 nbdir = os.path.abspath(self.notebook_manager.notebook_dir)
716 nbdir = os.path.abspath(self.notebook_manager.notebook_dir)
717 f = self.file_to_run
717 f = self.file_to_run
718 if f and f.startswith(nbdir):
718 if f:
719 if f.startswith(nbdir):
719 f = f[len(nbdir):]
720 f = f[len(nbdir):]
720 else:
721 else:
721 self.log.warn(
722 self.log.warn(
General Comments 0
You need to be logged in to leave comments. Login now