forgot to change copy.copy(m) to m[:]
This commit is contained in:
parent
8dc19f672b
commit
4d5d5bf5ae
|
@ -8,7 +8,7 @@ module as os.path.
|
||||||
import os
|
import os
|
||||||
import stat
|
import stat
|
||||||
import string
|
import string
|
||||||
import copy
|
|
||||||
|
|
||||||
# Normalize the case of a pathname and map slashes to backslashes.
|
# Normalize the case of a pathname and map slashes to backslashes.
|
||||||
# Other normalizations (such as optimizing '../' away) are not done
|
# Other normalizations (such as optimizing '../' away) are not done
|
||||||
|
@ -158,7 +158,7 @@ def dirname(p):
|
||||||
def commonprefix(m):
|
def commonprefix(m):
|
||||||
"Given a list of pathnames, returns the longest common leading component"
|
"Given a list of pathnames, returns the longest common leading component"
|
||||||
if not m: return ''
|
if not m: return ''
|
||||||
n = copy.copy(m)
|
n = m[:]
|
||||||
for i in range(len(n)):
|
for i in range(len(n)):
|
||||||
n[i] = n[i].split(os.sep)
|
n[i] = n[i].split(os.sep)
|
||||||
prefix = n[0]
|
prefix = n[0]
|
||||||
|
|
Loading…
Reference in New Issue