aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2011-10-04 21:27:03 -0700
committerZac Medico <zmedico@gentoo.org>2011-10-04 21:27:03 -0700
commit1c8ff00a26b0e2e3627e9c552374f71235ee6c39 (patch)
tree8dcc07377fe58aea154d610d9128c2617dcea842 /pym/portage
parentExecute tests bundled with the whirlpool module. (diff)
downloadportage-1c8ff00a26b0e2e3627e9c552374f71235ee6c39.tar.gz
portage-1c8ff00a26b0e2e3627e9c552374f71235ee6c39.tar.bz2
portage-1c8ff00a26b0e2e3627e9c552374f71235ee6c39.zip
dblink._elog_process: preserve empty lines
Diffstat (limited to 'pym/portage')
-rw-r--r--pym/portage/dbapi/vartree.py2
1 files changed, 0 insertions, 2 deletions
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')