summaryrefslogtreecommitdiffstats
path: root/Lib/shutil.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2012-08-25 08:12:47 (GMT)
committerGeorg Brandl <georg@python.org>2012-08-25 08:12:47 (GMT)
commitcc0274b90f8c6811c62c89190aafecbd49a15cd8 (patch)
treee4d7b5aa7ffbf18b10ee505c01421f5fa06c9a62 /Lib/shutil.py
parent06e1ab0a6b51c35e4637bb82c3aa18548b6412b0 (diff)
parentc8076dfa9dfafbb5455c127719e3ac5b325986b1 (diff)
downloadcpython-cc0274b90f8c6811c62c89190aafecbd49a15cd8.zip
cpython-cc0274b90f8c6811c62c89190aafecbd49a15cd8.tar.gz
cpython-cc0274b90f8c6811c62c89190aafecbd49a15cd8.tar.bz2
merge with 3.2
Diffstat (limited to 'Lib/shutil.py')
-rw-r--r--Lib/shutil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/shutil.py b/Lib/shutil.py
index a8b9f3f..5dc311e 100644
--- a/Lib/shutil.py
+++ b/Lib/shutil.py
@@ -332,7 +332,7 @@ def copytree(src, dst, symlinks=False, ignore=None, copy_function=copy2,
# Copying file access times may fail on Windows
pass
else:
- errors.extend((src, dst, str(why)))
+ errors.append((src, dst, str(why)))
if errors:
raise Error(errors)
return dst