diff options
author | Georg Brandl <georg@python.org> | 2012-08-25 08:12:47 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-08-25 08:12:47 (GMT) |
commit | cc0274b90f8c6811c62c89190aafecbd49a15cd8 (patch) | |
tree | e4d7b5aa7ffbf18b10ee505c01421f5fa06c9a62 /Lib/shutil.py | |
parent | 06e1ab0a6b51c35e4637bb82c3aa18548b6412b0 (diff) | |
parent | c8076dfa9dfafbb5455c127719e3ac5b325986b1 (diff) | |
download | cpython-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.py | 2 |
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 |