summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)