aboutsummaryrefslogtreecommitdiff
path: root/src/lib/data.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-06-13 21:34:15 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-06-13 21:34:15 +0200
commitf8d68fea77e6e7a0bd2045ff3e90522a87c9a06e (patch)
tree72226d925854b1c0099f5c92b79516dd4b2fe768 /src/lib/data.py
parentPinboard excpects an ISO 8601 time format. (diff)
downloadnewspipe-f8d68fea77e6e7a0bd2045ff3e90522a87c9a06e.tar.gz
newspipe-f8d68fea77e6e7a0bd2045ff3e90522a87c9a06e.tar.bz2
newspipe-f8d68fea77e6e7a0bd2045ff3e90522a87c9a06e.zip
Replaced 'false' by 'no'.
Diffstat (limited to 'src/lib/data.py')
-rw-r--r--src/lib/data.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/data.py b/src/lib/data.py
index 483c7100..0474888f 100644
--- a/src/lib/data.py
+++ b/src/lib/data.py
@@ -202,8 +202,8 @@ def export_bookmarks(user):
'href': bookmark.href,
'description': bookmark.description,
'title': bookmark.title,
- 'shared': 'yes' if bookmark.shared else 'false',
- 'toread': 'yes' if bookmark.to_read else 'false',
+ 'shared': 'yes' if bookmark.shared else 'no',
+ 'toread': 'yes' if bookmark.to_read else 'no',
'time': bookmark.time.isoformat(),
'tags': ' '.join(bookmark.tags_proxy)
})
bgstack15