Mercurial > libervia-backend
comparison src/bridge/DBus.py @ 2083:7999d5299ddc
bridge(D-Bus): minotr argument name fix
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 02 Oct 2016 15:51:42 +0200 |
parents | 046449cc2bff |
children | da4097de5a95 |
comparison
equal
deleted
inserted
replaced
2082:e8cb9cc09485 | 2083:7999d5299ddc |
---|---|
409 return self._callback("profileIsSessionStarted", unicode(profile_key)) | 409 return self._callback("profileIsSessionStarted", unicode(profile_key)) |
410 | 410 |
411 @dbus.service.method(const_INT_PREFIX+const_CORE_SUFFIX, | 411 @dbus.service.method(const_INT_PREFIX+const_CORE_SUFFIX, |
412 in_signature='s', out_signature='', | 412 in_signature='s', out_signature='', |
413 async_callbacks=None) | 413 async_callbacks=None) |
414 def profileSetDefault(self, arg_0): | 414 def profileSetDefault(self, profile): |
415 return self._callback("profileSetDefault", unicode(arg_0)) | 415 return self._callback("profileSetDefault", unicode(profile)) |
416 | 416 |
417 @dbus.service.method(const_INT_PREFIX+const_CORE_SUFFIX, | 417 @dbus.service.method(const_INT_PREFIX+const_CORE_SUFFIX, |
418 in_signature='ss', out_signature='b', | 418 in_signature='ss', out_signature='b', |
419 async_callbacks=('callback', 'errback')) | 419 async_callbacks=('callback', 'errback')) |
420 def profileStartSession(self, password='', profile_key="@DEFAULT@", callback=None, errback=None): | 420 def profileStartSession(self, password='', profile_key="@DEFAULT@", callback=None, errback=None): |