﻿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
9518	Wrong JSON snippet on fixture documentation	claude@…	Jacob	"On http://docs.djangoproject.com/en/dev/howto/initial-data, the JSON fixture example is wrong. Unlike Python, JSON doesn't allow commas after last element of a list or a dict.

The right example should be:
{{{
[
  {
    ""model"": ""myapp.person"",
    ""pk"": 1,
    ""fields"": {
      ""first_name"": ""John"",
      ""last_name"": ""Lennon""
    }
  },
  {
    ""model"": ""myapp.person"",
    ""pk"": 2,
    ""fields"": {
      ""first_name"": ""Paul"",
      ""last_name"": ""McCartney""
    }
  }
]
"		closed	Documentation	1.0		fixed			Accepted	1	0	0	0	0	0
