summary refs log tree commit diff
path: root/synapse/storage/event_push_actions.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2018-03-15 23:43:31 +0000
committerErik Johnston <erik@matrix.org>2018-03-15 23:43:31 +0000
commit926ba76e23ea9d55638baff541cdfaeb9e01ac47 (patch)
tree0fb744087cf47900122e60d5fa4b17765588a6b7 /synapse/storage/event_push_actions.py
parentMerge pull request #2798 from jeremycline/fedora-repo (diff)
downloadsynapse-926ba76e23ea9d55638baff541cdfaeb9e01ac47.tar.xz
Replace ujson with simplejson
Diffstat (limited to 'synapse/storage/event_push_actions.py')
-rw-r--r--synapse/storage/event_push_actions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/event_push_actions.py b/synapse/storage/event_push_actions.py

index 8efe2fd4bb..575d710d5d 100644 --- a/synapse/storage/event_push_actions.py +++ b/synapse/storage/event_push_actions.py
@@ -21,7 +21,7 @@ from synapse.types import RoomStreamToken from .stream import lower_bound import logging -import ujson as json +import simplejson as json logger = logging.getLogger(__name__)