Commit 13b3ba4d authored by Eric S. Raymond's avatar Eric S. Raymond

splitfields -> split

parent add58f95
......@@ -102,7 +102,7 @@ def packtree(outfp, dirname):
packtree(outfp, subdirname)
def unixfix(name):
comps = name.splitfields(os.sep)
comps = name.split(os.sep)
res = ''
for comp in comps:
if comp:
......
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