Changeset 7888 for branches/gajim_0.11/src/remote_control.py
- Timestamp:
- 01/23/07 21:32:43 (23 months ago)
- Files:
-
- 1 modified
-
branches/gajim_0.11/src/remote_control.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/gajim_0.11/src/remote_control.py
r7829 r7888 395 395 return result 396 396 397 @dbus.service.method(INTERFACE, in_signature='s', out_signature='a {ss}')397 @dbus.service.method(INTERFACE, in_signature='s', out_signature='av') 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=' s')401 result = dbus.Array([], signature='a{sv}') 402 402 accounts = gajim.contacts.get_accounts() 403 403 if len(accounts) == 0:
