Skip to content

Commit dbd33ed

Browse files
committed
little fix to pass tests
1 parent 17b1735 commit dbd33ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

postgres_composite_types/forms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def clean(self, value):
146146
except forms.ValidationError as error:
147147
errors.append(prefix_validation_error(
148148
error, code='field_invalid',
149-
prefix='%(label)s: ', params={'label': field.label}))
149+
prefix='%(label)s:', params={'label': field.label}))
150150
if errors:
151151
raise forms.ValidationError(errors)
152152
value = self.model(**cleaned_data)

0 commit comments

Comments
 (0)