Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/services/datastore/datastore.py
diff options
context:
space:
mode:
Diffstat (limited to 'services/datastore/datastore.py')
-rw-r--r--services/datastore/datastore.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/datastore/datastore.py b/services/datastore/datastore.py
index 4857675..9792b0a 100644
--- a/services/datastore/datastore.py
+++ b/services/datastore/datastore.py
@@ -373,7 +373,7 @@ class DataStore(object):
prop_dict = {}
for row in rows:
conv_key = row['key'].replace("''", "'")
- prop_dict[conv_key] = sqlite3.decode(row['value'])
+ prop_dict[conv_key] = row['value']
prop_dict['uid'] = str(uid)
del curs
return prop_dict