From ce830fb8bf08f4f3be1030c5d11cbbdbd674a39b Mon Sep 17 00:00:00 2001 From: Paul Franklin Date: Fri, 24 Feb 2017 12:28:31 -0800 Subject: [PATCH] give CLI warning "title" its own line, as the error already does --- gramps/cli/user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/cli/user.py b/gramps/cli/user.py index 6076edb05..815da7df9 100644 --- a/gramps/cli/user.py +++ b/gramps/cli/user.py @@ -169,7 +169,7 @@ class User(user.User): :type warning: str :returns: none """ - self._fileout.write("%s %s" % (title, warning)) + self._fileout.write("%s\n%s\n" % (title, warning)) def notify_error(self, title, error=""): """