From ee7f23f60dc8168fbdb8e335d2d00c5839719cd4 Mon Sep 17 00:00:00 2001 From: Pierre <66693681+extua@users.noreply.github.com> Date: Wed, 8 Oct 2025 16:25:47 +0100 Subject: [PATCH] chore: update error message on validating WACZ with missing pages.jsonl file, closes #48 --- wacz/validate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wacz/validate.py b/wacz/validate.py index ca01a55..344d43e 100644 --- a/wacz/validate.py +++ b/wacz/validate.py @@ -48,7 +48,7 @@ def check_required_contents(self): return 1 if glob.glob(os.path.join(self.dir.name, "pages/pages.jsonl")) == False: print( - "An index file is missing from your indexes folder you must have an index.cdx.gz, index,cdx or index.idx in your index folder" + "A pages file is missing from your pages folder; you must have a pages.jsonl in your pages folder" ) return 1