Add final newline to config

This commit is contained in:
Florian Bruhin 2014-03-09 20:13:40 +01:00
parent 2d33d32ed5
commit a19571fe21

View File

@ -88,7 +88,7 @@ class Config:
lines += self._str_section_desc(secname)
lines += self._str_option_desc(secname, section)
lines += self._str_items(section)
return '\n'.join(lines)
return '\n'.join(lines) + '\n'
def _str_section_desc(self, secname):
"""Get the section description string for secname."""