From c28b831c5f5fa2e90595f752a5dc0ea3102bd49a Mon Sep 17 00:00:00 2001 From: Faik Uygur Date: Mon, 15 Jun 2009 08:43:15 +0000 Subject: [PATCH] - no icon for a component, groups will have icons - Group member will now be only a name (localization will be in groups.xml) --- pisi/component.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pisi/component.py b/pisi/component.py index 16212125..c760b453 100644 --- a/pisi/component.py +++ b/pisi/component.py @@ -66,8 +66,7 @@ class Component(xmlfile.XmlFile): # Information about the component t_Summary = [autoxml.LocalText, autoxml.mandatory] t_Description = [autoxml.LocalText, autoxml.mandatory] - t_Icon = [ autoxml.String, autoxml.optional] - t_Group = [ autoxml.LocalText, autoxml.optional ] + t_Group = [ autoxml.String, autoxml.optional ] # the parts of this component. # to be filled by the component database, thus it is optional.