I'm in the process of upgrading a project from Django 1.5 and djorm-ext-hstore to Django 1.7 and django-hstore, and I've encountered a problem I cannot solve.
I have a hstore.DictionaryField which works as expected when working from the django shell (i.e. it returns a dictionary), but when I retrieve the value in a wsgi process, I get a string. e.g. I'm expecting `{"entry": "18", "page": "363"}` but I get `"page"=>"127", "entry"=>"5"`. I assume I've configured something wrong somewhere, but I can't find what it is. Can anyone suggest what might be wrong? I'm using django-hstore 1.3.5, and django 1.7.1.
Thanks in advance!
wilo