﻿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
13778	Error in documentation code	Cesar Canassa	nobody	"There is an error in this page of the documentation:

http://docs.djangoproject.com/en/1.2/ref/models/instances/#id1

The following code:

{{{
from django.core.validators import ValidationError, NON_FIELD_ERRORS
try:
    article.full_clean():
except ValidationError, e:
    non_field_errors = e.message_dict[NON_FIELD_ERRORS]
}}}


should be:


{{{
from django.core.validators import ValidationError, NON_FIELD_ERRORS
try:
    article.full_clean()
except ValidationError, e:
    non_field_errors = e.message_dict[NON_FIELD_ERRORS]
}}}"		closed	Documentation	1.2		fixed			Unreviewed	0	0	0	0	0	0
