parse comes from Xmlfile

This commit is contained in:
Faik Uygur
2009-06-12 18:28:27 +00:00
parent 18bbeabe88
commit b66a20c1cd
+2 -2
View File
@@ -50,7 +50,7 @@ class Distribution(xmlfile.XmlFile):
t_Obsoletes = [ [Obsolete], autoxml.optional, "Obsoletes/Package"]
class Component:
class Component(xmlfile.XmlFile):
"representation for component declarations"
__metaclass__ = autoxml.autoxml
@@ -85,7 +85,7 @@ class Components(xmlfile.XmlFile):
t_Components = [ [Component], autoxml.optional, "Components/Component" ]
# FIXME: there will be no component.xml only components.xml
class CompatComponent(Component, xmlfile.XmlFile):
class CompatComponent(Component):
tag = "PISI"