1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-23 12:27:48 +00:00

Use the built-in json module

Python >= 2.6 comes with json by default. simplejson is only useful for Python
<= 2.5.
This commit is contained in:
Bruno Renié
2014-07-09 14:00:39 +02:00
parent 7a8715309a
commit 2eb650d5ca
16 changed files with 16 additions and 16 deletions

View File

@@ -2,7 +2,7 @@
import os
import stat
import logging
import simplejson as json
import json
from django.core.urlresolvers import reverse
from django.http import HttpResponse, Http404, HttpResponseBadRequest