Skip to content

Commit

Permalink
Fix a typo in error message (#1381)
Browse files Browse the repository at this point in the history
  • Loading branch information
krassowski authored Jan 2, 2024
1 parent ac15039 commit c5493d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyter_server/services/contents/filemanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -1025,7 +1025,7 @@ async def is_non_empty_dir(os_path):
try:
send2trash(os_path)
except OSError as e:
raise web.HTTPError(400, "send2trash f`1ailed: %s" % e) from e
raise web.HTTPError(400, "send2trash failed: %s" % e) from e
return

if os.path.isdir(os_path):
Expand Down

0 comments on commit c5493d0

Please sign in to comment.