summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-05-21 19:55:31 +0000
committerZac Medico <zmedico@gentoo.org>2007-05-21 19:55:31 +0000
commit353729c460a8e8bf3f4c087756a8ac2a59ad36c8 (patch)
tree01f23cf35276ce886a9fd2b165aaf78456910550
parent0f8bcb36b08324804c213c591f0001af61c2568f (diff)
downloadportage-353729c460a8e8bf3f4c087756a8ac2a59ad36c8.tar.gz
portage-353729c460a8e8bf3f4c087756a8ac2a59ad36c8.tar.bz2
portage-353729c460a8e8bf3f4c087756a8ac2a59ad36c8.zip
Add a missing newline to the writemsg output.
svn path=/main/trunk/; revision=6564
-rw-r--r--pym/portage/dbapi/vartree.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py
index 3c7e646eb..986516e25 100644
--- a/pym/portage/dbapi/vartree.py
+++ b/pym/portage/dbapi/vartree.py
@@ -1212,7 +1212,8 @@ class dblink(object):
continue
try:
if statobj.st_nlink > 1:
- portage.writemsg("There are "+str(st.st_nlink-1)+" hardlinks to " + obj)
+ portage.writemsg("There are "+str(st.st_nlink-1)+ \
+ " hardlinks to '%s'\n" % obj)
# Always blind chmod 0 before unlinking to avoid race conditions.
os.chmod(obj, 0000)
os.unlink(obj)