diff --git a/config.yml.sample b/config.yml.sample index c5b39e8..7891bbc 100644 --- a/config.yml.sample +++ b/config.yml.sample @@ -74,5 +74,5 @@ recyclebin: enabled: true # empty_after_x_days var: Will automatically remove all files and folders in recycle bin after x days. # If this variable is not defined it, the RecycleBin will never be emptied. - # Setting variable to 0 will delete files immediately. + # Setting this variable to 0 will delete files immediately. empty_after_x_days: 60 \ No newline at end of file diff --git a/qbit_manage.py b/qbit_manage.py index 5f30ea5..239f2e3 100644 --- a/qbit_manage.py +++ b/qbit_manage.py @@ -65,7 +65,7 @@ parser.add_argument('-ro', '--rem-orphaned', const='rem_orphaned', help='Use this if you would like to remove orphaned files from your `root_dir` directory that are not referenced by any torrents.' ' It will scan your `root_dir` directory and compare it with what is in Qbitorrent. Any data not referenced in Qbitorrent will be moved into ' - ' `/data/torrents/orphaned_data` folder for you to review/delete.') + ' `/root_dir/orphaned_data` folder for you to review/delete.') parser.add_argument('-tnhl', '--tag-nohardlinks', dest='tag_nohardlinks', action='store_const', @@ -77,7 +77,9 @@ parser.add_argument('-er', '--empty-recycle', dest='empty_recycle', action='store_const', const='empty_recycle', - help='Use this to empty your Reycle Bin folder based on x number of days defined in the config.') + help='Use this to empty your Reycle Bin folder based on x number of days defined in the config.' + 'Setting "empty_after_x_days" variable to 0 will delete files immediately.' + 'If this variable is not defined the RecycleBin will never be emptied.') parser.add_argument('--dry-run', dest='dry_run', action='store_const',