From f8d68fea77e6e7a0bd2045ff3e90522a87c9a06e Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Tue, 13 Jun 2017 21:34:15 +0200 Subject: Replaced 'false' by 'no'. --- src/lib/data.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib/data.py') 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) }) -- cgit