Don't replace all double spaces

want to maintain the ability to format with the use of just text.
This commit is contained in:
William Minchin 2014-02-07 08:21:28 -07:00
parent 18d5348529
commit cac0b722cd

View file

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