This repository was archived by the owner on Aug 12, 2020. It is now read-only.

Description
As soon as I upgraded to Django 1.6 I started to get this deprecation warning:
[..]/site-packagesjfu/http.py:2: DeprecationWarning: django.utils.simplejson is deprecated; use json instead. from django.utils import simplejson
Easily fixable by replacing:
from django.utils import simplejson
with:
import json
Cheers!