mirror of
https://github.com/netinvent/npbackup.git
synced 2025-11-08 13:11:50 +08:00
Don't enforce repo_config key in runner
This commit is contained in:
parent
2a136cece4
commit
7a848c8453
1 changed files with 2 additions and 2 deletions
|
|
@ -9,7 +9,7 @@ __site__ = "https://www.netperfect.fr/npbackup"
|
||||||
__description__ = "NetPerfect Backup Client"
|
__description__ = "NetPerfect Backup Client"
|
||||||
__copyright__ = "Copyright (C) 2022-2024 NetInvent"
|
__copyright__ = "Copyright (C) 2022-2024 NetInvent"
|
||||||
__license__ = "GPL-3.0-only"
|
__license__ = "GPL-3.0-only"
|
||||||
__build__ = "2024091501"
|
__build__ = "2024103001"
|
||||||
|
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
|
@ -42,7 +42,7 @@ def serialize_datetime(obj):
|
||||||
|
|
||||||
|
|
||||||
def entrypoint(*args, **kwargs):
|
def entrypoint(*args, **kwargs):
|
||||||
repo_config = kwargs.pop("repo_config")
|
repo_config = kwargs.pop("repo_config", None)
|
||||||
json_output = kwargs.pop("json_output")
|
json_output = kwargs.pop("json_output")
|
||||||
operation = kwargs.pop("operation")
|
operation = kwargs.pop("operation")
|
||||||
backend_binary = kwargs.pop("backend_binary", None)
|
backend_binary = kwargs.pop("backend_binary", None)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue