remove the leading whitespace introduced by textwrap

This commit is contained in:
Stephan Gabler 2012-07-17 12:12:47 +02:00
parent 201e80142e
commit d5aa29f844

View file

@ -39,7 +39,7 @@ class Entry:
self.journal.config['linewrap'], self.journal.config['linewrap'],
initial_indent="| ", initial_indent="| ",
subsequent_indent="| ", subsequent_indent="| ",
drop_whitespace=False) drop_whitespace=False).replace(' ', ' ')
for line in self.body.strip().splitlines() for line in self.body.strip().splitlines()
]) ])
else: else: