From a484c9fd6bceec4184171ba404ea720a967f85b7 Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Mon, 20 Jun 2022 21:12:27 +0200 Subject: [PATCH] Fix typo in comment --- tools/docs/docload.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/docs/docload.py b/tools/docs/docload.py index 3b63f190..fa407263 100755 --- a/tools/docs/docload.py +++ b/tools/docs/docload.py @@ -221,7 +221,7 @@ if curs.rowcount != pagecount: numchanges = 0 # If the previous step succeeded, delete all the documentation for the specified version -# and insert into / updatethe doc table the content that was loaded into the temporary table +# and insert into / update the doc table the content that was loaded into the temporary table curs.execute("DELETE FROM docs WHERE version=%(version)s AND NOT EXISTS (SELECT 1 FROM docsload WHERE docsload.file=docs.file)", { 'version': ver, })