Commit 4fe787eb authored by Skip Montanaro's avatar Skip Montanaro

forgot to change copy.copy(m) to m[:]

parent a1aad267
......@@ -8,7 +8,7 @@ module as os.path.
import os
import stat
import string
import copy
# Normalize the case of a pathname and map slashes to backslashes.
# Other normalizations (such as optimizing '../' away) are not done
......@@ -158,7 +158,7 @@ def dirname(p):
def commonprefix(m):
"Given a list of pathnames, returns the longest common leading component"
if not m: return ''
n = copy.copy(m)
n = m[:]
for i in range(len(n)):
n[i] = n[i].split(os.sep)
prefix = n[0]
......
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