Mercurial > libervia-backend
diff frontends/src/bridge/DBus.py @ 365:efbfccfed623
core: local_dir moved to config file
- ~/.sat.conf added to potential config file location
- removed useless profile param from getConfig
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 18 Jun 2011 17:56:59 +0200 |
parents | 312ca6f9d84a |
children | f964dcec1611 |
line wrap: on
line diff
--- a/frontends/src/bridge/DBus.py Sat Jun 18 16:22:50 2011 +0200 +++ b/frontends/src/bridge/DBus.py Sat Jun 18 17:56:59 2011 +0200 @@ -81,8 +81,8 @@ def disconnect(self, profile_key="@DEFAULT@"): return self.db_comm_iface.disconnect(profile_key) - def getConfig(self, section, name, profile_key='@DEFAULT@'): - return unicode(self.db_comm_iface.getConfig(section, name, profile_key)) + def getConfig(self, section, name): + return unicode(self.db_comm_iface.getConfig(section, name)) def getContacts(self, profile_key="@DEFAULT@"): return self.db_comm_iface.getContacts(profile_key)