Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar/datastore/dbus_helpers.py
diff options
context:
space:
mode:
Diffstat (limited to 'sugar/datastore/dbus_helpers.py')
-rw-r--r--sugar/datastore/dbus_helpers.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/sugar/datastore/dbus_helpers.py b/sugar/datastore/dbus_helpers.py
index 2dfccac..d642988 100644
--- a/sugar/datastore/dbus_helpers.py
+++ b/sugar/datastore/dbus_helpers.py
@@ -59,10 +59,16 @@ def get_filename(uid):
return filename
def find(query, reply_handler, error_handler):
- logging.debug('dbus_helpers.find')
+ logging.debug('dbus_helpers.find: %r' % query)
if reply_handler and error_handler:
return _data_store.find(query, reply_handler=reply_handler,
error_handler=error_handler)
else:
return _data_store.find(query)
+def mount(uri, options):
+ return _data_store.mount(uri, options)
+
+def mounts():
+ return _data_store.mounts()
+