diff options
author | Richard van der Hoff <richard@matrix.org> | 2018-03-15 23:54:03 +0000 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2018-03-15 23:54:03 +0000 |
commit | 411c437fc609aad374af0732ef80f3f62a97a155 (patch) | |
tree | fb2b11ef0d3cc9fbcf498f038b5d003f7c729035 | |
parent | Replace some ujson with simplejson to make it work (diff) | |
download | synapse-411c437fc609aad374af0732ef80f3f62a97a155.tar.xz |
more simplejson
-rw-r--r-- | synapse/storage/events_worker.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/events_worker.py b/synapse/storage/events_worker.py index 86c3b48ad4..2e23dd78ba 100644 --- a/synapse/storage/events_worker.py +++ b/synapse/storage/events_worker.py @@ -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 |