From 9df3f42a44ab09f63f647b7fca3e0b0cb8be9e7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Mon, 21 Sep 2020 14:46:19 +0200 Subject: [PATCH] Fix typo in config validation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lubomír Sedlář --- pungi/checks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pungi/checks.py b/pungi/checks.py index e9ef3349..6f190c89 100644 --- a/pungi/checks.py +++ b/pungi/checks.py @@ -648,7 +648,7 @@ def make_schema(): "createrepo_checksum": { "type": "string", "default": "sha256", - "enum": ["sha", "sha256", "sha512"], + "enum": ["sha1", "sha256", "sha512"], }, "createrepo_use_xz": {"type": "boolean", "default": False}, "createrepo_num_threads": {"type": "number", "default": get_num_cpus()},