Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu@sugarlabs.org>2009-01-21 10:30:27 (GMT)
committer Tomeu Vizoso <tomeu@sugarlabs.org>2009-01-21 10:30:27 (GMT)
commit40a22bc1da60f4982e2163a9533d95213d27d7ca (patch)
tree47f8383a93e6b56b6ae35bf7eda8be2ab27a6dc0 /src
parentb0ae4f2e66ab4e3a82653ef420c3bfbbc4348274 (diff)
fix sporadic backtrace I was getting
Diffstat (limited to 'src')
-rw-r--r--src/jarabe/journal/listview.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jarabe/journal/listview.py b/src/jarabe/journal/listview.py
index 3a5a909..7cf09d7 100644
--- a/src/jarabe/journal/listview.py
+++ b/src/jarabe/journal/listview.py
@@ -398,7 +398,7 @@ class BaseListView(gtk.HBox):
metadata = self._last_clicked_entry.metadata
if selection.target == 'text/uri-list':
# Get hold of a reference so the temp file doesn't get deleted
- self._temp_file_path = model.get_file(metadata)
+ self._temp_file_path = model.get_file(metadata['uid'])
selection.set(selection.target, 8, self._temp_file_path)
elif selection.target == 'journal-object-id':
selection.set(selection.target, 8, metadata['uid'])