From 565b86b853d9978255d362ff4dff38b95e90e798 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 12 Jun 2023 12:22:35 +0530 Subject: [PATCH] ... --- src/calibre/utils/copy_files.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/utils/copy_files.py b/src/calibre/utils/copy_files.py index 2025aeebcd..9ef2047075 100644 --- a/src/calibre/utils/copy_files.py +++ b/src/calibre/utils/copy_files.py @@ -141,7 +141,7 @@ class WindowsFileCopier: winutil.set_file_handle_delete_on_close(h, True) except OSError as err: # Ignore dir not empty errors. Should never happen but we - # ignore it as the UNIX semantics are to no delete folders + # ignore it as the UNIX semantics are to not delete folders # during __exit__ anyway and we dont want to leak the handle. if err.winerror != winutil.ERROR_DIR_NOT_EMPTY: raise