From 2abca1d071057736aed9cceb70895dbb064ee588 Mon Sep 17 00:00:00 2001 From: Vassilii Khachaturov Date: Fri, 13 Sep 2013 09:00:46 +0000 Subject: [PATCH] 5598: make cli User.info consistent w/other output svn: r23110 --- gramps/cli/user.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gramps/cli/user.py b/gramps/cli/user.py index 0997f717c..4aa8e88f1 100644 --- a/gramps/cli/user.py +++ b/gramps/cli/user.py @@ -196,5 +196,4 @@ class User(user.User): """ Displays information to the CLI """ - self._fileout.write(msg1) - self._fileout.write(infotext) + self._fileout.write("{} {}\n".format(msg1, infotext))