mirror of
https://github.com/netinvent/npbackup.git
synced 2025-02-23 22:15:43 +08:00
Fix runner interface kwargs
This commit is contained in:
parent
f56875bd3c
commit
0208eec5f1
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ def entrypoint(*args, **kwargs):
|
|||
npbackup_runner.repo_config = kwargs.pop("repo_config")
|
||||
npbackup_runner.dry_run = kwargs.pop("dry_run")
|
||||
npbackup_runner.verbose = kwargs.pop("verbose")
|
||||
result = npbackup_runner.__getattribute__(kwargs.pop("operation"))(kwargs.pop("op_args"), __no_threads=True)
|
||||
result = npbackup_runner.__getattribute__(kwargs.pop("operation"))(**kwargs.pop("op_args"), __no_threads=True)
|
||||
|
||||
|
||||
def auto_upgrade(full_config: dict):
|
||||
|
|
Loading…
Reference in a new issue