diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2017-06-13 21:34:15 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2017-06-13 21:34:15 +0200 |
commit | f8d68fea77e6e7a0bd2045ff3e90522a87c9a06e (patch) | |
tree | 72226d925854b1c0099f5c92b79516dd4b2fe768 /src/lib | |
parent | Pinboard excpects an ISO 8601 time format. (diff) | |
download | newspipe-f8d68fea77e6e7a0bd2045ff3e90522a87c9a06e.tar.gz newspipe-f8d68fea77e6e7a0bd2045ff3e90522a87c9a06e.tar.bz2 newspipe-f8d68fea77e6e7a0bd2045ff3e90522a87c9a06e.zip |
Replaced 'false' by 'no'.
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/data.py | 4 |
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) }) |