From c47aa01bd1eb758402bde654aa7172b068ae401e Mon Sep 17 00:00:00 2001 From: Balazs Perlaki-Horvath Date: Sat, 13 Jan 2024 20:07:55 +0100 Subject: [PATCH] Fix typo --- src/tag_validator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tag_validator.py b/src/tag_validator.py index d225bc0..7313b68 100644 --- a/src/tag_validator.py +++ b/src/tag_validator.py @@ -36,7 +36,7 @@ def _is_valid(tag): parser = InfoParser(json_path=brand.info_file, build_number=version.build_number) if parser.version != version: - _exit_with_error(f"Ivalid date in tag: {tag}, does not match year.month of ZIM file in {brand.info_file}, it should be: {parser.version.semantic}") + _exit_with_error(f"Invalid date in tag: {tag}, does not match year.month of ZIM file in {brand.info_file}, it should be: {parser.version.semantic}") print(f"{brand.name} {version.semantic_downgraded}")