Typo fixes

This commit is contained in:
deajan 2024-04-23 23:59:59 +02:00
parent 4ef04203a0
commit b3efd0ba0c
2 changed files with 3 additions and 3 deletions

View file

@ -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",

View file

@ -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: