diff options
author | Amber Brown <hawkowl@atleastfornow.net> | 2018-09-27 23:39:45 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-27 23:39:45 +1000 |
commit | a512e637ac0df0d32559af64418691a2829800a6 (patch) | |
tree | a7c14c4053e9a051d13b53c5c03391183e64ef34 /synapse/api | |
parent | Run our oldest supported configuration in CI (#3952) (diff) | |
parent | Update 3970.bugfix (diff) | |
download | synapse-a512e637ac0df0d32559af64418691a2829800a6.tar.xz |
Merge pull request #3970 from schnuffle/develop-py3
Replaced all occurences of e.message with str(e)
Diffstat (limited to 'synapse/api')
-rw-r--r-- | synapse/api/filtering.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/api/filtering.py b/synapse/api/filtering.py index a31a9a17e0..eed8c67e6a 100644 --- a/synapse/api/filtering.py +++ b/synapse/api/filtering.py @@ -226,7 +226,7 @@ class Filtering(object): jsonschema.validate(user_filter_json, USER_FILTER_SCHEMA, format_checker=FormatChecker()) except jsonschema.ValidationError as e: - raise SynapseError(400, e.message) + raise SynapseError(400, str(e)) class FilterCollection(object): |