aboutsummaryrefslogtreecommitdiff
path: root/pyAggr3g470r.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 /pyAggr3g470r.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 'pyAggr3g470r.py')
-rw-r--r--pyAggr3g470r.py3
1 files changed, 0 insertions, 3 deletions
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
bgstack15