Show
Ignore:
Timestamp:
01/23/07 21:32:43 (23 months ago)
Author:
asterix
Message:

merge fixes from trunk

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/gajim_0.11/src/remote_control.py

    r7829 r7888  
    395395                return result 
    396396 
    397         @dbus.service.method(INTERFACE, in_signature='s', out_signature='a{ss}') 
     397        @dbus.service.method(INTERFACE, in_signature='s', out_signature='av') 
    398398        def list_contacts(self, account): 
    399399                '''list all contacts in the roster. If the first argument is specified, 
    400400                then return the contacts for the specified account''' 
    401                 result = dbus.Array([], signature='s') 
     401                result = dbus.Array([], signature='a{sv}') 
    402402                accounts = gajim.contacts.get_accounts() 
    403403                if len(accounts) == 0: