From: Zac Medico Date: Mon, 21 May 2007 19:55:31 +0000 (-0000) Subject: Add a missing newline to the writemsg output. X-Git-Tag: v2.2_pre1~1401 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=353729c460a8e8bf3f4c087756a8ac2a59ad36c8;p=portage.git Add a missing newline to the writemsg output. svn path=/main/trunk/; revision=6564 --- 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)