aboutsummaryrefslogtreecommitdiff
path: root/feedgetter.py
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2010-02-06 19:58:06 +0100
committercedricbonhomme <devnull@localhost>2010-02-06 19:58:06 +0100
commit06bfe7f177a167db31a3e0497b997bd60f040115 (patch)
tree5edae2e9afe84a5b86c93fed6c802eb6f7ffd21b /feedgetter.py
parentBug fix. Really stupid error in the evaluation of numbers of articles by stre... (diff)
downloadnewspipe-06bfe7f177a167db31a3e0497b997bd60f040115.tar.gz
newspipe-06bfe7f177a167db31a3e0497b997bd60f040115.tar.bz2
newspipe-06bfe7f177a167db31a3e0497b997bd60f040115.zip
Bug fix : there was a problem with utf-8 in the SQLite3 database with Python 2.6. Solved with http://www.python.org/doc/2.6/library/sqlite3.html#using-adapters-to-store-additional-python-types-in-sqlite-databases .
Diffstat (limited to 'feedgetter.py')
-rw-r--r--feedgetter.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/feedgetter.py b/feedgetter.py
index aa755632..d65ef4b8 100644
--- a/feedgetter.py
+++ b/feedgetter.py
@@ -39,6 +39,7 @@ class FeedGetter(object):
print "./feed.lst not found"
exit(0)
# Create the base if not exists.
+ sqlite3.register_adapter(str, lambda s : s.decode('utf-8'))
self.conn = sqlite3.connect("./var/feed.db", isolation_level = None)
self.c = self.conn.cursor()
self.c.execute('''create table if not exists rss_feed
bgstack15