diff options
-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 837176331..251f62231 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -2265,7 +2265,7 @@ class dblink(object): showMessage("%s checking %d files for package collisions\n" % \ (green("*"), len(mycontents))) for i, f in enumerate(mycontents): - if i % 1000 == 0: + if i % 1000 == 0 and i != 0: showMessage("%d files checked ...\n" % i) if scheduler is not None and \ |