summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-03-11 19:43:13 +0100
committerFlorian Bruhin <me@the-compiler.org>2021-03-11 19:43:13 +0100
commit78fe7ffcf22bf025bbb14422b6f1919cf9284fb2 (patch)
tree2c981c53a9abc79f9cda9c594ba2e9d50bad2f27
parent85d38e8db9627a880afae55376b2673c85c3cf77 (diff)
parent2b859a71810ac6352efea43de259eb3343e38e5f (diff)
downloadqutebrowser-78fe7ffcf22bf025bbb14422b6f1919cf9284fb2.tar.gz
qutebrowser-78fe7ffcf22bf025bbb14422b6f1919cf9284fb2.zip
Merge remote-tracking branch 'origin/pr/6232'
-rwxr-xr-xscripts/hist_importer.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/hist_importer.py b/scripts/hist_importer.py
index 6f2b9fa87..df12bcf2e 100755
--- a/scripts/hist_importer.py
+++ b/scripts/hist_importer.py
@@ -135,7 +135,8 @@ def insert_qb(history, dest):
'INSERT INTO History (url,title,atime,redirect) VALUES (?,?,?,?)',
history
)
- cursor.execute('DROP TABLE CompletionHistory')
+ cursor.execute('UPDATE CompletionMetaInfo SET value = 1 '
+ 'WHERE key = "force_rebuild"')
conn.commit()
conn.close()