Skip to content

Commit

Permalink
Merge pull request #347 from edx/ned/simplesjson
Browse files Browse the repository at this point in the history
There's no such module as simplesjson  #334
  • Loading branch information
nedbat committed May 5, 2016
2 parents 55a2d8b + edf770a commit 4379a7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion xblock/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""
from webob import Response
try:
import simplesjson as json # pylint: disable=F0401
import simplejson as json # pylint: disable=F0401
except ImportError:
import json

Expand Down
2 changes: 1 addition & 1 deletion xblock/mixins.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from collections import OrderedDict

try:
import simplesjson as json # pylint: disable=F0401
import simplejson as json # pylint: disable=F0401
except ImportError:
import json
import warnings
Expand Down

0 comments on commit 4379a7e

Please sign in to comment.