api docs: Add missing space in exception's message.

This commit is contained in:
Yago González
2018-06-18 16:47:20 +02:00
committed by Tim Abbott
parent 2d1adc8d99
commit f3277500de

View File

@@ -40,7 +40,7 @@ def validate_against_openapi_schema(content: Dict[str, Any], endpoint: str,
for key, value in content.items():
# Check that the key is defined in the schema
if key not in schema['properties']:
raise SchemaError('Extraneous key "{}" in the response\'s'
raise SchemaError('Extraneous key "{}" in the response\'s '
'content'.format(key))
# Check that the types match