Show More
@@ -2615,7 +2615,7 b' Defaulting color scheme to \'NoColor\'"""' | |||||
2615 | os.chdir(pdir) |
|
2615 | os.chdir(pdir) | |
2616 | for ff in os.listdir(pdir): |
|
2616 | for ff in os.listdir(pdir): | |
2617 | base, ext = os.path.splitext(ff) |
|
2617 | base, ext = os.path.splitext(ff) | |
2618 | if isexec(ff) and base not in self.shell.no_alias: |
|
2618 | if isexec(ff) and base.lower() not in self.shell.no_alias: | |
2619 | if ext.lower() == '.exe': |
|
2619 | if ext.lower() == '.exe': | |
2620 | ff = base |
|
2620 | ff = base | |
2621 | alias_table[base.lower()] = (0,ff) |
|
2621 | alias_table[base.lower()] = (0,ff) |
General Comments 0
You need to be logged in to leave comments.
Login now