diff options
author | Erik Johnston <erik@matrix.org> | 2018-03-15 23:43:31 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2018-03-15 23:43:31 +0000 |
commit | 926ba76e23ea9d55638baff541cdfaeb9e01ac47 (patch) | |
tree | 0fb744087cf47900122e60d5fa4b17765588a6b7 /synapse/handlers/e2e_keys.py | |
parent | Merge pull request #2798 from jeremycline/fedora-repo (diff) | |
download | synapse-926ba76e23ea9d55638baff541cdfaeb9e01ac47.tar.xz |
Replace ujson with simplejson
Diffstat (limited to 'synapse/handlers/e2e_keys.py')
-rw-r--r-- | synapse/handlers/e2e_keys.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/e2e_keys.py b/synapse/handlers/e2e_keys.py index 668a90e495..ce2c87e400 100644 --- a/synapse/handlers/e2e_keys.py +++ b/synapse/handlers/e2e_keys.py @@ -13,7 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -import ujson as json +import simplejson as json import logging from canonicaljson import encode_canonical_json |