mirror of
https://github.com/khoj-ai/khoj.git
synced 2025-02-17 16:14:21 +00:00
Remove spurious space in Entries without Todo in OrgNode Entry Repr
This commit is contained in:
parent
a02d9db457
commit
fd31d339c1
1 changed files with 3 additions and 1 deletions
|
@ -370,7 +370,9 @@ class Orgnode(object):
|
|||
n = ''
|
||||
for _ in range(0, self.level):
|
||||
n = n + '*'
|
||||
n = n + ' ' + self.todo + ' '
|
||||
n = n + ' '
|
||||
if self.todo:
|
||||
n = n + self.todo + ' '
|
||||
if self.prty:
|
||||
n = n + '[#' + self.prty + '] '
|
||||
n = n + self.headline
|
||||
|
|
Loading…
Add table
Reference in a new issue