##// END OF EJS Templates
Insert cwd to top of list
Jonathan Frederic -
Show More
@@ -145,7 +145,7 b' class NbConvertApp(BaseIPythonApplication):'
145 """
145 """
146 Add the cwd to the sys.path ($PYTHONPATH)
146 Add the cwd to the sys.path ($PYTHONPATH)
147 """
147 """
148 sys.path.append(os.getcwd())
148 sys.path.insert(0, os.getcwd())
149
149
150
150
151 def init_notebooks(self):
151 def init_notebooks(self):
General Comments 0
You need to be logged in to leave comments. Login now