James Antill ([email protected]) said: 
>  Yeh, looks fine to me. Pushed, and building -88 in rawhide.

Here's the fix I'm building as -89. Sorry about that.

Bill
diff -up yum-3.4.3/yum/comps.py.old yum-3.4.3/yum/comps.py
--- yum-3.4.3/yum/comps.py.old  2013-05-02 11:02:28.000000000 -0400
+++ yum-3.4.3/yum/comps.py      2013-05-02 11:03:20.438942937 -0400
@@ -373,7 +373,10 @@ class Environment(CompsObj):
                 optionid = child.text
                 self._options[optionid] = 1
                 defopt = child.attrib.get('default')
-                default = parse_boolean(defopt)
+                if defopt:
+                    default = parse_boolean(defopt)
+                else:
+                    default = False
                 if default:
                     self._defaultoptions[optionid] = 1
 
_______________________________________________
Yum-devel mailing list
[email protected]
http://lists.baseurl.org/mailman/listinfo/yum-devel

Reply via email to