##// END OF EJS Templates
Allow filename with extension in find_cmd in Windows....
Thomas Kluyver -
Show More
@@ -83,7 +83,7 b' def _find_cmd(cmd):'
83 83 path = None
84 84 for ext in extensions:
85 85 try:
86 path = SearchPath(PATH, cmd + ext)[0]
86 path = SearchPath(PATH, cmd, ext)[0]
87 87 except:
88 88 pass
89 89 if path is None:
General Comments 0
You need to be logged in to leave comments. Login now