From 5407ee289fa0e06ba19db91e4690b6e968ad6a2c Mon Sep 17 00:00:00 2001 From: mutantsan Date: Sat, 11 Mar 2023 23:35:50 +0200 Subject: [PATCH] Change check command doc --- ckanext/search_schema/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ckanext/search_schema/cli.py b/ckanext/search_schema/cli.py index 3245490..78de4d4 100644 --- a/ckanext/search_schema/cli.py +++ b/ckanext/search_schema/cli.py @@ -52,7 +52,7 @@ def clear(group: str): @search_schema.command() def check(): - """Check if a schema contains all the required fields""" + """Check if a schema is properly configured""" conn: SearchEngineType = facade.connect() check_result: dict[str, dict[str, Any]] = conn.check_schema()