From: Zac Medico Date: Wed, 5 Oct 2011 04:27:03 +0000 (-0700) Subject: dblink._elog_process: preserve empty lines X-Git-Tag: v2.2.0_alpha61~1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=1c8ff00a26b0e2e3627e9c552374f71235ee6c39;p=portage.git dblink._elog_process: preserve empty lines --- diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index 50fa6f5ac..1fc95a39b 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -3126,8 +3126,6 @@ class dblink(object): lines = [lines] for line in lines: for line in line.split('\n'): - if not line: - continue fields = (funcname, phase, cpv, line) str_buffer.append(' '.join(fields)) str_buffer.append('\n')