Fix issue when using both --dry-run and -v options.
This commit is contained in:
parent
4c45d60529
commit
bb99009191
1 changed files with 2 additions and 2 deletions
|
@ -123,8 +123,8 @@ def create_archive(
|
||||||
files_cache_flags = ('--files-cache', files_cache) if files_cache else ()
|
files_cache_flags = ('--files-cache', files_cache) if files_cache else ()
|
||||||
remote_path_flags = ('--remote-path', remote_path) if remote_path else ()
|
remote_path_flags = ('--remote-path', remote_path) if remote_path else ()
|
||||||
verbosity_flags = {
|
verbosity_flags = {
|
||||||
VERBOSITY_SOME: ('--info', '--stats',),
|
VERBOSITY_SOME: ('--info',) if dry_run else ('--info', '--stats',),
|
||||||
VERBOSITY_LOTS: ('--debug', '--list', '--stats'),
|
VERBOSITY_LOTS: ('--debug', '--list',) if dry_run else ('--debug', '--list', '--stats',),
|
||||||
}.get(verbosity, ())
|
}.get(verbosity, ())
|
||||||
dry_run_flags = ('--dry-run',) if dry_run else ()
|
dry_run_flags = ('--dry-run',) if dry_run else ()
|
||||||
default_archive_name_format = '{hostname}-{now:%Y-%m-%dT%H:%M:%S.%f}'
|
default_archive_name_format = '{hostname}-{now:%Y-%m-%dT%H:%M:%S.%f}'
|
||||||
|
|
Loading…
Reference in a new issue