Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/services
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu@tomeuvizoso.net>2007-03-01 18:23:55 (GMT)
committer Tomeu Vizoso <tomeu@tomeuvizoso.net>2007-03-01 18:23:55 (GMT)
commit47b8ad24968270c988d16e8186e4b496cc736259 (patch)
treebf07d6fe836f7a601afccdf4272bab01c1c690dd /services
parenta3e2803eb876fea7aa58f65b4fdba9cc656f143a (diff)
Stop sqlite3.decoding the data from the db.
Diffstat (limited to 'services')
-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