Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/jarabe/journal/model.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/jarabe/journal/model.py')
-rw-r--r--src/jarabe/journal/model.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jarabe/journal/model.py b/src/jarabe/journal/model.py
index 0176c54..8ae78d8 100644
--- a/src/jarabe/journal/model.py
+++ b/src/jarabe/journal/model.py
@@ -427,7 +427,7 @@ def get_file_size(object_id):
if os.path.exists(object_id):
return os.stat(object_id).st_size
- file_path = dbus_helpers.get_filename(object_id)
+ file_path = _get_datastore().get_filename(object_id)
if file_path:
size = os.stat(file_path).st_size
os.remove(file_path)