Changeset 8625

Show
Ignore:
Timestamp:
08/30/07 20:58:40 (15 months ago)
Author:
asterix
Message:

[oystein] fix dbus signature of gajim-remote list_contacts. fixes #3408

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/remote_control.py

    r8408 r8625  
    435435                return result 
    436436 
    437         @dbus.service.method(INTERFACE, in_signature='s', out_signature='av') 
     437        @dbus.service.method(INTERFACE, in_signature='s', out_signature='aa{sv}') 
    438438        def list_contacts(self, account): 
    439439                '''list all contacts in the roster. If the first argument is specified, 
    440440                then return the contacts for the specified account''' 
    441                 result = dbus.Array([], signature='a{sv}') 
     441                result = dbus.Array([], signature='aa{sv}') 
    442442                accounts = gajim.contacts.get_accounts() 
    443443                if len(accounts) == 0: