##// END OF EJS Templates
issue is with 'with'statetment
kd2718 -
Show More
@@ -212,12 +212,14 b' class OSMagics(Magics):'
212 # write the whole loop for posix/Windows so we don't have an if in
212 # write the whole loop for posix/Windows so we don't have an if in
213 # the innermost part
213 # the innermost part
214 if self.is_posix:
214 if self.is_posix:
215 print(path)
215 for pdir in path:
216 for pdir in path:
216 try:
217 try:
217 os.chdir(pdir)
218 os.chdir(pdir)
218 except OSError:
219 except OSError:
219 continue
220 continue
220 with os.scandir(pdir) as dirlist:
221 dirlist = os.scandir(path=pdir)
222 #with os.scandir(pdir) as dirlist:
221 for ff in dirlist:
223 for ff in dirlist:
222 if self.isexec(ff):
224 if self.isexec(ff):
223 fname = ff.name
225 fname = ff.name
General Comments 0
You need to be logged in to leave comments. Login now