mirror of
https://github.com/netinvent/npbackup.git
synced 2025-11-12 07:01:37 +08:00
Typo fixes
This commit is contained in:
parent
4ef04203a0
commit
b3efd0ba0c
2 changed files with 3 additions and 3 deletions
|
|
@ -212,7 +212,7 @@ This is free software, and you are welcome to redistribute it under certain cond
|
|||
parser.add_argument(
|
||||
"--dry-run",
|
||||
action="store_true",
|
||||
help="Run operations in test mode (no actual modifications",
|
||||
help="Run operations in test mode, no actual modifications",
|
||||
)
|
||||
parser.add_argument(
|
||||
"--create-scheduled-task",
|
||||
|
|
|
|||
|
|
@ -197,7 +197,7 @@ class ResticRunner:
|
|||
if isinstance(value, bool):
|
||||
self._dry_run = value
|
||||
else:
|
||||
raise ValueError("Bogus dry run value givne")
|
||||
raise ValueError("Bogus dry run value given")
|
||||
|
||||
@property
|
||||
def json_output(self) -> bool:
|
||||
|
|
@ -208,7 +208,7 @@ class ResticRunner:
|
|||
if isinstance(value, bool):
|
||||
self._json_output = value
|
||||
else:
|
||||
raise ValueError("Bogus json_output value givne")
|
||||
raise ValueError("Bogus json_output value given")
|
||||
|
||||
@property
|
||||
def ignore_cloud_files(self) -> bool:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue