Sophie

Sophie

distrib > Fedora > 18 > x86_64 > media > updates-src > by-pkgid > eae5262e2ef560393cec5a40be700a92 > files > 4

yum-3.4.3-54.fc18.src.rpm

commit 4687ffe032c1a4060da3ef670301df06d0faeb32
Author: Zdeněk Pavlas <zpavlas@redhat.com>
Date:   Mon Dec 10 08:55:41 2012 +0100

    selectGroup(): Fix a typo.  BZ 885139

diff --git a/yum/__init__.py b/yum/__init__.py
index 6401645..63053af 100644
--- a/yum/__init__.py
+++ b/yum/__init__.py
@@ -3692,7 +3692,8 @@ much more problems).
             if not upgrade and len(txmbrs_used) == old_txmbrs:
                 self.logger.critical(_('Warning: Group %s does not have any packages to install.'), thisgroup.groupid)
                 if count_cond_test:
-                    self.logger.critical(_('Group %s does have %u conditional packages, which may get installed.'), count_cond_test)
+                    self.logger.critical(_('Group %s does have %u conditional packages, which may get installed.'),
+                                         thisgroup.groupid, count_cond_test)
         return txmbrs_used
 
     def deselectGroup(self, grpid, force=False):