Skip to content

Commit c5493d0

Browse files
authored
Fix a typo in error message (#1381)
1 parent ac15039 commit c5493d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyter_server/services/contents/filemanager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1025,7 +1025,7 @@ async def is_non_empty_dir(os_path):
10251025
try:
10261026
send2trash(os_path)
10271027
except OSError as e:
1028-
raise web.HTTPError(400, "send2trash f`1ailed: %s" % e) from e
1028+
raise web.HTTPError(400, "send2trash failed: %s" % e) from e
10291029
return
10301030

10311031
if os.path.isdir(os_path):

0 commit comments

Comments
 (0)