summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pym/portage/dbapi/vartree.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py
index 883cf0f55..a306f8267 100644
--- a/pym/portage/dbapi/vartree.py
+++ b/pym/portage/dbapi/vartree.py
@@ -1523,11 +1523,12 @@ class dblink(object):
collisions = []
destroot = normalize_path(destroot).rstrip(os.path.sep) + \
os.path.sep
- print green("*")+" checking "+str(len(mycontents))+" files for package collisions"
+ writemsg_stdout("%s checking %d files for package collisions\n" % \
+ (green("*"), len(mycontents)))
for f in mycontents:
i = i + 1
if i % 1000 == 0:
- print str(i)+" files checked ..."
+ writemsg_stdout("%d files checked ...\n" % i)
dest_path = normalize_path(
os.path.join(destroot, f.lstrip(os.path.sep)))
try: