Commit 3c358815 authored by Dan Pascu's avatar Dan Pascu

Fixed contacts property on GoogleContactsGroup

parent 8f5ac8a1
...@@ -618,7 +618,7 @@ class GoogleContactsGroup(VirtualGroup): ...@@ -618,7 +618,7 @@ class GoogleContactsGroup(VirtualGroup):
__id__ = 'google_contacts' __id__ = 'google_contacts'
name = Setting(type=unicode, default='Google Contacts') name = Setting(type=unicode, default='Google Contacts')
contacts = WriteOnceAttribute() contacts = property(lambda self: self.__manager__.contacts)
def __init__(self): def __init__(self):
self.__manager__ = GoogleContactsManager() self.__manager__ = GoogleContactsManager()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment