##// 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 path = None
83 path = None
84 for ext in extensions:
84 for ext in extensions:
85 try:
85 try:
86 path = SearchPath(PATH, cmd + ext)[0]
86 path = SearchPath(PATH, cmd, ext)[0]
87 except:
87 except:
88 pass
88 pass
89 if path is None:
89 if path is None:
General Comments 0
You need to be logged in to leave comments. Login now