From 8915657a0835bfad1daae9c09cac98e6725ae568 Mon Sep 17 00:00:00 2001 From: Tomeu Vizoso Date: Mon, 28 May 2007 14:25:36 +0000 Subject: Take out one try..except block. --- (limited to 'sugar/datastore') diff --git a/sugar/datastore/dbus_helpers.py b/sugar/datastore/dbus_helpers.py index fa05491..8086274 100644 --- a/sugar/datastore/dbus_helpers.py +++ b/sugar/datastore/dbus_helpers.py @@ -27,12 +27,8 @@ DS_DBUS_INTERFACE = "org.laptop.sugar.DataStore" DS_DBUS_PATH = "/org/laptop/sugar/DataStore" _bus = dbus.SessionBus() -try: - _data_store = dbus.Interface(_bus.get_object(DS_DBUS_SERVICE, DS_DBUS_PATH), - DS_DBUS_INTERFACE) -except Exception, e: - _data_store = None - logging.error(e) +_data_store = dbus.Interface(_bus.get_object(DS_DBUS_SERVICE, DS_DBUS_PATH), + DS_DBUS_INTERFACE) def create(properties, filename): object_id = _data_store.create(dbus.Dictionary(properties), filename) -- cgit v0.9.1