Changeset 8626

Show
Ignore:
Timestamp:
08/30/07 21:09:09 (15 months ago)
Author:
asterix
Message:

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

Files:
1 modified

Legend:

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

    r7888 r8626  
    395395                return result 
    396396 
    397         @dbus.service.method(INTERFACE, in_signature='s', out_signature='av') 
     397        @dbus.service.method(INTERFACE, in_signature='s', out_signature='aa{sv}') 
    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='a{sv}') 
     401                result = dbus.Array([], signature='aa{sv}') 
    402402                accounts = gajim.contacts.get_accounts() 
    403403                if len(accounts) == 0: