From ce9a04a3f4e1788d81fb47d36469f7f3137351d3 Mon Sep 17 00:00:00 2001 From: Bastien Abadie <abadie@teklia.com> Date: Wed, 17 Jul 2024 07:50:57 +0200 Subject: [PATCH] Fix typo in reindex command --- arkindex/documents/management/commands/reindex.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arkindex/documents/management/commands/reindex.py b/arkindex/documents/management/commands/reindex.py index c5742e48e1..7b5415240f 100644 --- a/arkindex/documents/management/commands/reindex.py +++ b/arkindex/documents/management/commands/reindex.py @@ -43,7 +43,7 @@ class Command(BaseCommand): if not corpora.exists(): raise CommandError(f"Corpus {corpus_id} does not exist or is not indexable") else: - raise CommandError("Either spcify a corpus ID with --corpus-id or index all corpus through --all") + raise CommandError("Either specify a corpus ID with --corpus-id or index all corpus through --all") for corpus in corpora: self.stdout.write(f"Indexing {corpus.name}") -- GitLab