help string fixup

This commit is contained in:
Thomas Waldmann 2021-04-16 15:53:16 +02:00
parent 56a75ee691
commit 7290333051
1 changed files with 2 additions and 2 deletions

View File

@ -2746,11 +2746,11 @@ class Archiver:
add_common_option('--remote-path', metavar='PATH', dest='remote_path',
help='use PATH as borg executable on the remote (default: "borg")')
add_common_option('--remote-ratelimit', metavar='RATE', dest='upload_ratelimit', type=int,
help='deprecated, use --upload-ratelimit')
help='deprecated, use ``--upload-ratelimit`` instead')
add_common_option('--upload-ratelimit', metavar='RATE', dest='upload_ratelimit', type=int,
help='set network upload rate limit in kiByte/s (default: 0=unlimited)')
add_common_option('--remote-buffer', metavar='UPLOAD_BUFFER', dest='upload_buffer', type=int,
help='deprecated, use --upload-buffer')
help='deprecated, use ``--upload-buffer`` instead')
add_common_option('--upload-buffer', metavar='UPLOAD_BUFFER', dest='upload_buffer', type=int,
help='set network upload buffer size in MiB. (default: 0=no buffer)')
add_common_option('--consider-part-files', dest='consider_part_files', action='store_true',