diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2014-12-10 00:50:32 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2014-12-10 00:50:32 (GMT) |
commit | 884afd92f5a194e326df2be8279d4ab160c7b0c9 (patch) | |
tree | ce04f35703ae8e49f7795ea92cfad63047126041 /Lib/shutil.py | |
parent | 8b1cbd2b7cd8752462c68b17447446b54065691c (diff) | |
download | cpython-884afd92f5a194e326df2be8279d4ab160c7b0c9.zip cpython-884afd92f5a194e326df2be8279d4ab160c7b0c9.tar.gz cpython-884afd92f5a194e326df2be8279d4ab160c7b0c9.tar.bz2 |
Issue #21775: shutil.copytree(): fix crash when copying to VFAT
An exception handler assumed that that OSError objects always have a
'winerror' attribute. That is not the case, so the exception handler
itself raised AttributeError when run on Linux (and, presumably, any
other non-Windows OS).
Patch by Greg Ward.
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 22958f4..ac06ae5 100644 --- a/Lib/shutil.py +++ b/Lib/shutil.py @@ -337,7 +337,7 @@ def copytree(src, dst, symlinks=False, ignore=None, copy_function=copy2, copystat(src, dst) except OSError as why: # Copying file access times may fail on Windows - if why.winerror is None: + if getattr(why, 'winerror', None) is None: errors.append((src, dst, str(why))) if errors: raise Error(errors) |