﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
14438	Deserializer raises ValidationError if natural key is given as string	Piotr Czachur	nobody	"Command `manage.py dumpdata --natural --format=yaml` generates FK as following:
{{{
    fk_name: natural_key_value
}}}
for example
{{{
    color: red
}}}

Such fixture gives ValidationError when trying to load:

{{{
    ValidationError: [u'This value must be an integer.']
}}}

The workaround for this problem is put natural key in []:
{{{
    fk_name: [natural_key_value]
}}}



"	Bug	closed	Core (Serialization)	1.2	Normal	duplicate			Unreviewed	0	0	0	0	0	0
