Fix wrong way of adding Error information in shutil.copytree.
This commit is contained in:
parent
6f64796c22
commit
c8076dfa9d
|
@ -236,7 +236,7 @@ def copytree(src, dst, symlinks=False, ignore=None, copy_function=copy2,
|
||||||
# Copying file access times may fail on Windows
|
# Copying file access times may fail on Windows
|
||||||
pass
|
pass
|
||||||
else:
|
else:
|
||||||
errors.extend((src, dst, str(why)))
|
errors.append((src, dst, str(why)))
|
||||||
if errors:
|
if errors:
|
||||||
raise Error(errors)
|
raise Error(errors)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue