Commit 7f7e1371 authored by Skip Montanaro's avatar Skip Montanaro

fix for bug 773020 - splitting PATH should use os.pathsep

parent bd9f5209
......@@ -13,7 +13,7 @@ from stat import *
def msg(str):
sys.stderr.write(str + '\n')
pathlist = os.environ['PATH'].split(':')
pathlist = os.environ['PATH'].split(os.pathsep)
sts = 0
longlist = ''
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment