mirror of
https://github.com/tbabej/taskwiki.git
synced 2025-08-18 21:33:07 +02:00
VimwikiTask: Encode decription in utf-8
This commit is contained in:
parent
a63bb8b536
commit
a981523d88
1 changed files with 1 additions and 1 deletions
|
@ -322,7 +322,7 @@ class VimwikiTask(object):
|
|||
'* [',
|
||||
self['completed_mark'],
|
||||
'] ',
|
||||
self['description'] if self['description'] else 'TEXT MISSING?',
|
||||
self['description'].encode('utf-8') if self['description'] else 'TEXT MISSING?',
|
||||
' ' + '!' * self.priority_from_tw_format if self['priority'] else '',
|
||||
' ' + self['due'].strftime(regexp.DATETIME_FORMAT) if self['due'] else '',
|
||||
' #' + self.uuid.vim_representation(self.cache) if self.uuid else '',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue