display all of the profile

This commit is contained in:
Romain Bignon 2010-07-29 13:08:16 +02:00
commit f95aab9096
4 changed files with 200 additions and 88 deletions

View file

@ -214,6 +214,7 @@ class AuMBackend(BaseBackend, ICapMessages, ICapMessagesReply, ICapDating, ICapC
s = ProfileNode(section, section.capitalize(), [], flags=ProfileNode.SECTION)
for key, value in d.iteritems():
s.value.append(ProfileNode(key, key.capitalize(), value))
contact.profile.append(s)
return contact
except BrowserUnavailable: