Use Python native JSON library instead of Django's

This commit is contained in:
Roberto Rosario
2014-06-29 16:40:03 -04:00
parent 39d8bd9eb8
commit a46642015b

View File

@@ -1,6 +1,7 @@
from __future__ import absolute_import
from collections import namedtuple
from json import dumps
import os
import pbs
@@ -12,7 +13,6 @@ except pbs.CommandNotFound:
PIP = False
from django.conf import settings
from django.utils.simplejson import dumps
class PIPNotFound(Exception):