[yum-commits] yum/__init__.py
James Antill
james at osuosl.org
Mon Oct 14 19:50:32 UTC 2013
yum/__init__.py | 4 ++++
1 file changed, 4 insertions(+)
New commits:
commit ff5416b1532fe43c68bf51ae30751504885a501a
Author: James Antill <james at and.org>
Date: Mon Oct 14 15:49:35 2013 -0400
Give same non-exist msg. for install @foo as group install foo. BZ 1018833.
diff --git a/yum/__init__.py b/yum/__init__.py
index d4673fa..83d2efb 100644
--- a/yum/__init__.py
+++ b/yum/__init__.py
@@ -4462,6 +4462,10 @@ much more problems).
except yum.Errors.GroupsError:
self.logger.critical(_('Warning: Group %s does not exist.'), group_string)
continue
+ else:
+ self.logger.error(_('Warning: group %s does not exist.'),
+ group_string)
+
return tx_return
def _at_groupupgrade(self, pattern):
More information about the Yum-commits
mailing list