Add missing space

This commit is contained in:
Florian Bruhin 2014-06-19 13:19:02 +02:00
parent b70657eb53
commit cd68d04067

View File

@ -122,7 +122,7 @@ class BaseType:
if self.valid_values is not None:
if value not in self.valid_values:
raise ValidationError(value, "valid values: {}".format(
','.join(self.valid_values)))
', '.join(self.valid_values)))
else:
return
else: