Changeset 724
- Timestamp:
- 07/21/08 01:08:02 (4 months ago)
- Files:
-
- oss/headstock/headstock/api/contact.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
oss/headstock/headstock/api/contact.py
r677 r724 103 103 groups = child.get_children('group', ns=child.xml_ns) or [] 104 104 for group in groups: 105 item.groups.append(unicode(group)) 105 if group.xml_text: 106 item.groups.append(group.xml_text) 106 107 item.subscription = child.get_attribute_value('subscription') 107 108 r.items[nodeid] = item
