Changes between Version 3 and Version 4 of Ticket #34319
- Timestamp:
- Feb 7, 2023, 4:36:36 PM (22 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #34319 – Description
v3 v4 68 68 value = super().validate(*args, **kwargs) 69 69 except ValidationError as e: 70 e.code = self.violation_code 70 71 # Create a new ValidationError with the violation_field_name attribute as the key 71 72 e = ValidationError({self.violation_field_name: e})