Skip to content

Commit

Permalink
Update always_delete_dir documentation
Browse files Browse the repository at this point in the history
Co-authored-by: Kevin Bates <kbates4@gmail.com>
  • Loading branch information
2 people authored and Steven Silvester committed Aug 23, 2021
1 parent bc37a81 commit e3a146e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions jupyter_server/services/contents/filemanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,11 +122,11 @@ def _checkpoints_class_default(self):
always_delete_dir = Bool(
False,
config=True,
help="""If True, deleting non-empty directory will always be allowed.
WARNING this may result in files being definitely removed; e.g. on Windows
if the data size is too big for the trash/recycle bin they will be really
deleted. If False (default), non-empty directory will be send to trash only
if safe. And if ``delete_to_trash`` is True, they won't be deleted.""",
help="""If True, deleting a non-empty directory will always be allowed.
WARNING this may result in files being permanently removed; e.g. on Windows,
if the data size is too big for the trash/recycle bin the directory will be permanently
deleted. If False (default), the non-empty directory will be sent to the trash only
if safe. And if ``delete_to_trash`` is True, the directory won't be deleted.""",
)

@default("files_handler_class")
Expand Down

0 comments on commit e3a146e

Please sign in to comment.