I have an error message on django 1.4:
dictionary update sequence element #0 has length 1; 2 is required
[EDIT]
It happe
You are sending one parameter incorrectly; it should be a dictionary object:
dictionary object
Wrong: func(a=r)
func(a=r)
Correct: func(a={'x':y})
func(a={'x':y})