summary refs log tree commit diff
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2018-03-15 23:54:03 +0000
committerRichard van der Hoff <richard@matrix.org>2018-03-15 23:54:03 +0000
commit411c437fc609aad374af0732ef80f3f62a97a155 (patch)
treefb2b11ef0d3cc9fbcf498f038b5d003f7c729035
parentReplace some ujson with simplejson to make it work (diff)
downloadsynapse-411c437fc609aad374af0732ef80f3f62a97a155.tar.xz
more simplejson
-rw-r--r--synapse/storage/events_worker.py2
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