diff options
author | Erik Johnston <erikj@jki.re> | 2018-05-24 16:08:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-24 16:08:57 +0100 |
commit | 46345187cc7fed4137ce8f669d33a6e590dca471 (patch) | |
tree | 0dc10f431ba45079c8adc71dbc898cc374146d52 /synapse/events/validator.py | |
parent | Merge branch 'master' into develop (diff) | |
parent | Replace some more comparisons with six (diff) | |
download | synapse-46345187cc7fed4137ce8f669d33a6e590dca471.tar.xz |
Merge pull request #3243 from NotAFile/py3-six-3
Replace some more comparisons with six
Diffstat (limited to 'synapse/events/validator.py')
-rw-r--r-- | synapse/events/validator.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/synapse/events/validator.py b/synapse/events/validator.py index 2f4c8a1018..e0e5bf818c 100644 --- a/synapse/events/validator.py +++ b/synapse/events/validator.py @@ -17,6 +17,8 @@ from synapse.types import EventID, RoomID, UserID from synapse.api.errors import SynapseError from synapse.api.constants import EventTypes, Membership +from six import string_types + class EventValidator(object): @@ -49,7 +51,7 @@ class EventValidator(object): strings.append("state_key") for s in strings: - if not isinstance(getattr(event, s), basestring): + if not isinstance(getattr(event, s), string_types): raise SynapseError(400, "Not '%s' a string type" % (s,)) if event.type == EventTypes.Member: @@ -88,5 +90,5 @@ class EventValidator(object): for s in keys: if s not in d: raise SynapseError(400, "'%s' not in content" % (s,)) - if not isinstance(d[s], basestring): + if not isinstance(d[s], string_types): raise SynapseError(400, "Not '%s' a string type" % (s,)) |