From: Zac Medico Date: Wed, 11 Mar 2009 05:57:54 +0000 (-0000) Subject: When displaying the list of failed packages, tell the number that failed. X-Git-Tag: v2.1.6.8~154 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=926d10c62f0bc7d8b96fb226dfefa145c24f56c9;p=portage.git When displaying the list of failed packages, tell the number that failed. Thanks to Jeremy Olexa for the suggestion. (trunk r12655) svn path=/main/branches/2.1.6/; revision=12923 --- diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py index b2e5c37fc..2b80a41d5 100644 --- a/pym/_emerge/__init__.py +++ b/pym/_emerge/__init__.py @@ -10640,8 +10640,13 @@ class Scheduler(PollScheduler): if len(self._failed_pkgs_all) > 1 or \ (self._failed_pkgs_all and "--keep-going" in self.myopts): - msg = "The following packages have " + \ - "failed to build or install:" + if len(self._failed_pkgs_all) > 1: + msg = "The following %d packages have " % \ + len(self._failed_pkgs_all) + \ + "failed to build or install:" + else: + msg = "The following package has " + \ + "failed to build or install:" prefix = bad(" * ") writemsg(prefix + "\n", noiselevel=-1) from textwrap import wrap