Changeset 8626 for branches/gajim_0.11.1/src/remote_control.py
- Timestamp:
- 08/30/07 21:09:09 (15 months ago)
- Files:
-
- 1 modified
-
branches/gajim_0.11.1/src/remote_control.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/gajim_0.11.1/src/remote_control.py
r7888 r8626 395 395 return result 396 396 397 @dbus.service.method(INTERFACE, in_signature='s', out_signature='a v')397 @dbus.service.method(INTERFACE, in_signature='s', out_signature='aa{sv}') 398 398 def list_contacts(self, account): 399 399 '''list all contacts in the roster. If the first argument is specified, 400 400 then return the contacts for the specified account''' 401 result = dbus.Array([], signature='a {sv}')401 result = dbus.Array([], signature='aa{sv}') 402 402 accounts = gajim.contacts.get_accounts() 403 403 if len(accounts) == 0:
