Mercurial > libervia-backend
diff sat_bridge/DBus.py @ 61:58d49fc19639
parameters are saved again
- use 2 new files to save individual and general parameters data
- setParam from dbus bridge now use str instead of dbus.String
- fixed param updated signal for general params
- fixed param setting
author | Goffi <goffi@goffi.org> |
---|---|
date | Thu, 28 Jan 2010 12:38:12 +1100 |
parents | 9764e027ecc0 |
children | d35c5edab53f |
line wrap: on
line diff
--- a/sat_bridge/DBus.py Thu Jan 28 02:32:27 2010 +1100 +++ b/sat_bridge/DBus.py Thu Jan 28 12:38:12 2010 +1100 @@ -178,7 +178,7 @@ @dbus.service.method(const_INT_PREFIX+const_COMM_SUFFIX, in_signature='sss', out_signature='') def setParam(self, name, value, category): - self.cb["setParam"](name, str(value), category) + self.cb["setParam"](str(name), str(value), str(category)) @dbus.service.method(const_INT_PREFIX+const_COMM_SUFFIX, in_signature='ss', out_signature='s')