Skip to content

Commit 9bedfb5

Browse files
RRosioafshin
andauthored
Update jupyter_server/services/contents/fileio.py
Co-authored-by: Afshin Taylor Darian <[email protected]>
1 parent d8e0d13 commit 9bedfb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyter_server/services/contents/fileio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def copy2_safe(src, dst, log=None):
4242
# if src file is not writable, avoid creating a back-up
4343
if not os.access(src, os.W_OK):
4444
if log:
45-
log.debug("Source file, %s, is not writeable", src, exc_info=True)
45+
log.debug("Source file, %s, is not writable", src, exc_info=True)
4646
raise PermissionError(errno.EACCES, f"File is not writable: {src}")
4747

4848
shutil.copyfile(src, dst)

0 commit comments

Comments
 (0)