2
0
mirror of https://github.com/inventree/InvenTree.git synced 2026-03-15 16:40:56 +00:00

Remove debug statement

This commit is contained in:
Oliver Walters
2025-12-01 22:12:14 +00:00
parent 61edb2ba8e
commit 539add7105

View File

@@ -794,8 +794,7 @@ class ContentTypeField(serializers.ChoiceField):
if content_types.exists() and content_types.count() == 1:
content_type = content_types.first()
except Exception as e:
print('e:', e)
except Exception:
raise ValidationError(_('Invalid content type format'))
if content_type is None: