Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2007-07-23 11:31:04 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2007-07-23 11:31:04 (GMT)
commita0c8f51ab02f3fe1532d88e56c4c06a06091f758 (patch)
treec2d49c150952948deeb92fbd257b8a63040a6519 /sugar
parentaee3330be4857737c3afd2c5c462118c95df6fdb (diff)
parent557f3d6ea702665b6e55e1981f921aa2c407b5cf (diff)
Merge branch 'master' of git+ssh://dev.laptop.org/git/sugar
Diffstat (limited to 'sugar')
-rw-r--r--sugar/datastore/datastore.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/sugar/datastore/datastore.py b/sugar/datastore/datastore.py
index 83351ed..ef1dd45 100644
--- a/sugar/datastore/datastore.py
+++ b/sugar/datastore/datastore.py
@@ -161,9 +161,8 @@ class DSObject(object):
def get(object_id):
logging.debug('datastore.get')
metadata = dbus_helpers.get_properties(object_id)
- file_path = dbus_helpers.get_filename(object_id)
- ds_object = DSObject(object_id, DSMetadata(metadata), file_path)
+ ds_object = DSObject(object_id, DSMetadata(metadata), None)
# TODO: register the object for updates
return ds_object