"Starred" in json export

This commit is contained in:
Manuel Ebert 2013-11-03 15:39:49 -10:00
parent 82336ffe75
commit 31e64ff6a0

View file

@ -68,7 +68,8 @@ class Entry:
'title': self.title.strip(), 'title': self.title.strip(),
'body': self.body.strip(), 'body': self.body.strip(),
'date': self.date.strftime("%Y-%m-%d"), 'date': self.date.strftime("%Y-%m-%d"),
'time': self.date.strftime("%H:%M") 'time': self.date.strftime("%H:%M"),
'starred': self.starred
} }
def to_md(self): def to_md(self):