I have an error message on django 1.4:
dictionary update sequence element #0 has length 1; 2 is required
[EDIT]
It happe
I hit this error calling:
dict(my_data)
I fixed this with:
import json json.loads(my_data)