aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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