From a19571fe21b0d0002a9358c13901f4eef63294a9 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Sun, 9 Mar 2014 20:13:40 +0100 Subject: [PATCH] Add final newline to config --- qutebrowser/config/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qutebrowser/config/config.py b/qutebrowser/config/config.py index a1136e9b6..1a24f6c61 100644 --- a/qutebrowser/config/config.py +++ b/qutebrowser/config/config.py @@ -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."""