﻿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
13178	Make YAML serializer prefer block mode over inline mode	Patryk Zawadzki	nobody	"Currently:

{{{
$ ./manage.py dumpdata invoicing.customer --format=yaml
- fields: {address: bar, company: 1, contact: '', deleted_at: null, email: foo@bar.com,
    name: Foo, tax_id: ''}
  model: invoicing.customer
  pk: 1
}}}

After the change:

{{{
$ ./manage.py dumpdata invoicing.customer --format=yaml
- fields:
    address: bar
    company: 1
    contact: ''
    deleted_at: null
    email: foo@bar.com
    name: Foo
    tax_id: ''
  model: invoicing.customer
  pk: 1
}}}

It makes reading, understanding and editing of fixtures much easier (after all that's why we have YAML)."		closed	Core (Serialization)	dev		duplicate			Unreviewed	1	0	0	0	0	0
