mirror of
https://github.com/tbabej/taskwiki.git
synced 2025-08-23 02:23:07 +02:00
VimwikiTask: Fix improper task to string conversion
This commit is contained in:
parent
5e294d54b3
commit
6f4efc53bd
1 changed files with 1 additions and 1 deletions
|
@ -193,7 +193,7 @@ class VimwikiTask(object):
|
||||||
'X' if self.completed else self.completed_mark,
|
'X' if self.completed else self.completed_mark,
|
||||||
'] ',
|
'] ',
|
||||||
self.text,
|
self.text,
|
||||||
' ' + '!' * self.priority if self.priority else ''
|
' ' + '!' * self.priority if self.priority else '',
|
||||||
' #',
|
' #',
|
||||||
self.uuid or 'TW-NOT_SYNCED'
|
self.uuid or 'TW-NOT_SYNCED'
|
||||||
])
|
])
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue