From 747ea5d6bc31b31fd046e036d90fb603c55307b5 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Fri, 24 May 2019 17:43:41 -0700 Subject: [PATCH] Fixed help text for sqlite-utils enable-fts Closes #19 --- sqlite_utils/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sqlite_utils/cli.py b/sqlite_utils/cli.py index e064716..fb07ee9 100644 --- a/sqlite_utils/cli.py +++ b/sqlite_utils/cli.py @@ -214,10 +214,10 @@ def create_index(path, table, column, name, unique, if_not_exists): @click.argument("table") @click.argument("column", nargs=-1, required=True) @click.option( - "--fts4", help="Just show FTS4 enabled tables", default=False, is_flag=True + "--fts4", help="Use FTS4", default=False, is_flag=True ) @click.option( - "--fts5", help="Just show FTS5 enabled tables", default=False, is_flag=True + "--fts5", help="Use FTS5", default=False, is_flag=True ) def enable_fts(path, table, column, fts4, fts5): "Enable FTS for specific table and columns"