From 958ff11a991137cabb46c5519d8b44e25bd9e757 Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Thu, 4 Oct 2018 21:47:52 +0200 Subject: [PATCH] Started with refactor to use Vue.js, tags split into list --- digimarks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/digimarks.py b/digimarks.py index 84d876a..79b35c9 100644 --- a/digimarks.py +++ b/digimarks.py @@ -449,7 +449,7 @@ class Bookmark(BaseModel): 'url': self.url, 'created': self.created_date.strftime('%Y-%m-%d %H:%M:%S'), 'url_hash': self.url_hash, - 'tags': self.tags, + 'tags': self.tags.split(','), } return result