From: Zac Medico Date: Sat, 13 Jan 2007 00:42:08 +0000 (-0000) Subject: Use end_paragraph(1) instead of add_line_break() so that there is really a blank... X-Git-Tag: v2.1.2~17 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=336a1db43e36be403bd455c185a230203dca98aa;p=portage.git Use end_paragraph(1) instead of add_line_break() so that there is really a blank line. svn path=/main/trunk/; revision=5624 --- diff --git a/bin/emerge b/bin/emerge index 35981fb0f..408a44a51 100755 --- a/bin/emerge +++ b/bin/emerge @@ -3449,7 +3449,7 @@ def show_unmerge_failure_message(pkg, ebuild, retval): msg.append("If necessary, manually remove the ebuild " ) msg.append("in order to skip the execution of removal phases.") - f.add_line_break() + f.end_paragraph(1) for x in msg: f.add_flowing_data(x) f.end_paragraph(1)