From 8ee0b7c65cfa34f550672872bffa06183bea9963 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Tue, 7 Jul 2026 17:57:29 -0700 Subject: [PATCH] Fix for rogue quote in enable-fts --help --- docs/cli-reference.rst | 2 +- sqlite_utils/cli.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/cli-reference.rst b/docs/cli-reference.rst index fd1199f..e57f4b3 100644 --- a/docs/cli-reference.rst +++ b/docs/cli-reference.rst @@ -1028,7 +1028,7 @@ See :ref:`cli_fts`. Usage: sqlite-utils enable-fts [OPTIONS] PATH TABLE COLUMN... - Enable full-text search for specific table and columns" + Enable full-text search for specific table and columns Example: diff --git a/sqlite_utils/cli.py b/sqlite_utils/cli.py index 905963f..99a8c64 100644 --- a/sqlite_utils/cli.py +++ b/sqlite_utils/cli.py @@ -706,7 +706,7 @@ def create_index( def enable_fts( path, table, column, fts4, fts5, tokenize, create_triggers, replace, load_extension ): - """Enable full-text search for specific table and columns" + """Enable full-text search for specific table and columns Example: