mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-03 05:29:12 +00:00
Remove spurious space in Entries without Todo in OrgNode Entry Repr
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user