From 6de0a5d46a00a66d827c32deaca5cbd0ad2103ad Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Wed, 11 Aug 2021 05:03:07 -0700 Subject: [PATCH] Typo fix --- sqlite_utils/db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlite_utils/db.py b/sqlite_utils/db.py index 7ba4ecb..55067d0 100644 --- a/sqlite_utils/db.py +++ b/sqlite_utils/db.py @@ -746,7 +746,7 @@ class Database: Create a new SQL view with the specified name - ``sql`` should start with ``SELECT ...``. - ``ignore`` - set to ``True`` to do nothing if a view with this name already exists - - ``replace`` - set to ``True`` to do replace the view if one with this name already exists + - ``replace`` - set to ``True`` to replace the view if one with this name already exists """ assert not ( ignore and replace