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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/places.py b/places.py
index c69b841..16ae900 100644
--- a/places.py
+++ b/places.py
@@ -76,7 +76,7 @@ class SqliteStore(object):
'order by visits desc limit 0, ?',
(text, text, self.MAX_SEARCH_MATCHES))
- result = [self._place_from_row(row) for row in cursor]
+ result = [Place.from_row(row) for row in cursor]
finally:
cursor.close()