Replace some ujson with simplejson to make it work

This commit is contained in:
Erik Johnston 2018-03-15 23:38:43 +00:00 committed by Richard van der Hoff
parent 2a376579f3
commit a8ce159be4
4 changed files with 5 additions and 4 deletions

View file

@ -28,7 +28,7 @@ from synapse.api.errors import SynapseError
from collections import namedtuple
import logging
import ujson as json
import simplejson as json
# these are only included to make the type annotations work
from synapse.events import EventBase # noqa: F401