[1.6.x] Fixed #20791 -- Reworded ForeignKey default error message

Backport of 311c1d2848 from master.
This commit is contained in:
ersran9 2013-07-23 23:02:09 +05:30 committed by Claude Paroz
parent 4525eab077
commit 7295a8262f
1 changed files with 1 additions and 1 deletions

View File

@ -1125,7 +1125,7 @@ class ForeignObject(RelatedField):
class ForeignKey(ForeignObject):
empty_strings_allowed = False
default_error_messages = {
'invalid': _('Model %(model)s with pk %(pk)r does not exist.')
'invalid': _('%(model)s instance with pk %(pk)r does not exist.')
}
description = _("Foreign Key (type determined by related field)")