From 7f7978b5a3ffa2de76b4c90b6354fdae34498581 Mon Sep 17 00:00:00 2001 From: Lucian Branescu Mihaila Date: Sat, 17 Jul 2010 22:19:29 +0000 Subject: Small fixes. --- (limited to 'places.py') 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() -- cgit v0.9.1