Exclude deprecated "borg list --successful" flag from getting passed to Borg.

This commit is contained in:
Dan Helfman 2022-06-02 21:14:25 -07:00
parent 80ec3e7d97
commit b6893f6455
1 changed files with 3 additions and 1 deletions

View File

@ -62,7 +62,9 @@ def list_archives(repository, storage_config, list_arguments, local_path='borg',
) )
+ make_flags('remote-path', remote_path) + make_flags('remote-path', remote_path)
+ make_flags('lock-wait', lock_wait) + make_flags('lock-wait', lock_wait)
+ make_flags_from_arguments(list_arguments, excludes=('repository', 'archive', 'paths')) + make_flags_from_arguments(
list_arguments, excludes=('repository', 'archive', 'successful', 'paths')
)
+ ( + (
'::'.join((repository, list_arguments.archive)) '::'.join((repository, list_arguments.archive))
if list_arguments.archive if list_arguments.archive