From 06bfe7f177a167db31a3e0497b997bd60f040115 Mon Sep 17 00:00:00 2001 From: cedricbonhomme Date: Sat, 6 Feb 2010 19:58:06 +0100 Subject: 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 . --- pyAggr3g470r.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'pyAggr3g470r.py') diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py index ff43f1b7..a446ca0b 100644 --- a/pyAggr3g470r.py +++ b/pyAggr3g470r.py @@ -257,9 +257,6 @@ class Root: c.execute("UPDATE rss_feed SET article_readed=1 WHERE article_link='" + article_link + "'") conn.commit() c.close() - - - except Exception, e: pass -- cgit