aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2010-02-12 14:31:47 +0100
committercedricbonhomme <devnull@localhost>2010-02-12 14:31:47 +0100
commit1cf622ac245768739927a227bdab0f7077b236f0 (patch)
tree8034cb0ac8264027e91789aed4b10ef899ed9e52
parentLittle improvement (Possibility to mark all articles as read only by feeds.) (diff)
downloadnewspipe-1cf622ac245768739927a227bdab0f7077b236f0.tar.gz
newspipe-1cf622ac245768739927a227bdab0f7077b236f0.tar.bz2
newspipe-1cf622ac245768739927a227bdab0f7077b236f0.zip
Minor bug fix: _Too many values to unpack_ line 257 of pyAggr3g470r.py: split() remplaced by partition().
-rw-r--r--pyAggr3g470r.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py
index 58f9f72e..090ee054 100644
--- a/pyAggr3g470r.py
+++ b/pyAggr3g470r.py
@@ -254,7 +254,7 @@ class Root:
Mark one (or more) article(s) as read by setting the value of the field
'article_readed' of the SQLite database to 1.
"""
- param, identifiant = target.split(':')
+ param, _, identifiant = target.partition(':')
try:
conn = sqlite3.connect("./var/feed.db", isolation_level = None)
c = conn.cursor()
bgstack15