diff options
author | Zac Medico <zmedico@gentoo.org> | 2010-02-11 20:58:22 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2010-02-11 20:58:22 +0000 |
commit | db0300cda6025f5a2dad7f0457f3bfa926c7e39c (patch) | |
tree | 6aaa98a6f4307e76d810a9a8a4a8e513349db2db | |
parent | 786dffcfa58d90e0c763ce6fdc6042e98216a308 (diff) | |
download | portage-db0300cda6025f5a2dad7f0457f3bfa926c7e39c.tar.gz portage-db0300cda6025f5a2dad7f0457f3bfa926c7e39c.tar.bz2 portage-db0300cda6025f5a2dad7f0457f3bfa926c7e39c.zip |
Remove unnecessary newline in dblink._eerror message.
svn path=/main/trunk/; revision=15342
-rw-r--r-- | pym/portage/dbapi/vartree.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index dc518a2f5..48d58350e 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -2464,7 +2464,7 @@ class dblink(object): # like hell and continue to hopefully finish all our # administrative and pkg_postinst stuff. self._eerror("postrm", - ["Could not chmod or unlink '%s': %s\n" % \ + ["Could not chmod or unlink '%s': %s" % \ (file_name, ose)]) finally: if bsd_chflags and pflags != 0: |