On 10/18/2013 02:05 AM, Cristian Tomoiaga wrote: > Hello, > > It seems Django 1.6 switched from Pickle to Json for session serialization. > https://docs.djangoproject.com/en/1.6/topics/http/sessions/#session-serialization > > For anyone getting the error about Token not being serializable, just > add the following in settings.py: > SESSION_SERIALIZER = 'django.contrib.sessions.serializers.PickleSerializer' > until this is "fixed". Thanks for sharing this. Thomas