Fix the dirty log level flag.

This commit is contained in:
kenkeiras 2017-10-01 20:55:55 +02:00
parent c1055bd703
commit 0e41a98857
2 changed files with 2 additions and 2 deletions

View file

@ -52,7 +52,7 @@ class OrgModeSession:
def annotate(self, annotation):
if self.dirty:
self.f.write("{indentation} {data}\n".format(
indentation='*' * (self.level + 2),
indentation='*' * (self.level + 1),
data="---"))
self.dirty = False