From c265541384c1e794b167da762c49a078b2195bf8 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sun, 3 Jan 2021 12:22:07 -0800 Subject: [PATCH] Shorter help summary for rebuild_fts --- sqlite_utils/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlite_utils/cli.py b/sqlite_utils/cli.py index 4d888ef..0388961 100644 --- a/sqlite_utils/cli.py +++ b/sqlite_utils/cli.py @@ -275,7 +275,7 @@ def optimize(path, tables, no_vacuum, load_extension): @click.argument("tables", nargs=-1) @load_extension_option def rebuild_fts(path, tables, load_extension): - """Rebuild specific FTS tables, or all FTS tables if none are specified""" + """Rebuild all or specific FTS tables""" db = sqlite_utils.Database(path) _load_extensions(db, load_extension) if not tables: