summary refs log tree commit diff
path: root/synapse/storage/events_worker.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2018-03-15 23:38:43 +0000
committerMatthew Hodgson <matthew@matrix.org>2018-03-16 00:55:44 +0000
commitbf49d2dca8db6d82f09441a35cd3655c746b6b4d (patch)
treeff8c9a6666ec5810aa42ce08f2e2535809288079 /synapse/storage/events_worker.py
parentmake incr syncs work (diff)
downloadsynapse-bf49d2dca8db6d82f09441a35cd3655c746b6b4d.tar.xz
Replace some ujson with simplejson to make it work
Diffstat (limited to 'synapse/storage/events_worker.py')
-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