Skip to content

Commit

Permalink
Increment to beta-9
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeDacre committed Mar 15, 2018
1 parent f5d2c84 commit c56e6a8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Careful rm
##########

Version: 1.0-beta8
Version: 1.0-beta9

A wrapper for rm that adds more useful warnings and an optional recycle/trash
mode
Expand Down
6 changes: 4 additions & 2 deletions careful_rm.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,13 @@
# For old versions of python 2
input = raw_input

__version__ = '1.0b8'
__version__ = '1.0b9'

# Don't ask if fewer than this number of files deleted
CUTOFF = 3
DOCSTR = '{0}\nWARNING CUTOFF: {1}\n'.format(__doc__, str(CUTOFF))
DOCSTR = '{0}\nCUTOFF: {1} (more files than this results in warning\n'.format(
__doc__, str(CUTOFF)
)

# Print on one line if fewer than this number
MAX_LINE = 2
Expand Down

0 comments on commit c56e6a8

Please sign in to comment.