Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion aws_lambda_builders/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def copytree(source, destination, ignore=None):
try:
# Let's try to copy the directory metadata from source to destination
shutil.copystat(source, destination)
except WindowsError as ex: # pylint: disable=undefined-variable
except OSError as ex:
# Can't copy file access times in Windows
LOG.debug("Unable to copy file access times from %s to %s", source, destination, exc_info=ex)

Expand Down