Stop sqlite3.decoding the data from the db.

This commit is contained in:
Tomeu Vizoso 2007-03-01 19:23:55 +01:00
parent a3e2803eb8
commit 47b8ad2496

View File

@ -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