0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-19 19:18:19 +02:00

Fix up error messages

This commit is contained in:
Erik Johnston 2019-01-29 10:36:46 +00:00
parent 28efc80723
commit 9fa3c6ffa3

View file

@ -52,7 +52,7 @@ class EventValidator(object):
for s in event_strings:
if not isinstance(getattr(event, s), string_types):
raise SynapseError(400, "Not '%s' a string type" % (s,))
raise SynapseError(400, "'%s' not a string type" % (s,))
if event.type == EventTypes.Message:
content_strings = [
@ -119,4 +119,4 @@ class EventValidator(object):
if s not in d:
raise SynapseError(400, "'%s' not in content" % (s,))
if not isinstance(d[s], string_types):
raise SynapseError(400, "Not '%s' a string type" % (s,))
raise SynapseError(400, "'%s' not a string type" % (s,))