mirror of
https://github.com/python/cpython.git
synced 2025-08-30 13:38:43 +00:00
splitfields -> split
This commit is contained in:
parent
add58f95cc
commit
13b3ba4df3
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue