Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/places.py
diff options
context:
space:
mode:
Diffstat (limited to 'places.py')
-rw-r--r--places.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/places.py b/places.py
index 90956fe..8b98c79 100644
--- a/places.py
+++ b/places.py
@@ -46,6 +46,9 @@ class SqliteStore(object):
cursor.execute('select * from sqlite_master where name == "places"')
if cursor.fetchone() == None:
+ # Create table to store the visited places. Note that
+ # bookmark and gecko_flags fields aren't used anymore in
+ # WebKit port, but are kept for backwards compatibility.
cursor.execute("""create table places (
uri text,
title text,