Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/jarabe/journal/listmodel.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/jarabe/journal/listmodel.py')
-rw-r--r--src/jarabe/journal/listmodel.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/jarabe/journal/listmodel.py b/src/jarabe/journal/listmodel.py
index bc53a9c..d3b7e24 100644
--- a/src/jarabe/journal/listmodel.py
+++ b/src/jarabe/journal/listmodel.py
@@ -16,7 +16,7 @@
import logging
-import json
+import simplejson
import gobject
import gtk
@@ -144,9 +144,7 @@ class ListModel(gtk.GenericTreeModel, gtk.TreeDragSource):
self._cached_row.append(int(metadata.get('progress', 100)))
if metadata.get('buddies', ''):
- # json cannot read unicode strings
- buddies_str = metadata['buddies'].encode('utf8')
- buddies = json.read(buddies_str).values()
+ buddies = simplejson.loads(metadata['buddies']).values()
else:
buddies = []