diff --git a/README.rst b/README.rst index b11ebbc..2e8c270 100644 --- a/README.rst +++ b/README.rst @@ -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 diff --git a/careful_rm.py b/careful_rm.py index a6d18d7..8b2f17d 100755 --- a/careful_rm.py +++ b/careful_rm.py @@ -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