﻿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
16151	"More informative message than ""No fixtures found"""	Luc Saffre	nobody	"When I run loaddata with a long list of fixture labels, and if for some of these there are no fixtures, then Django issues several times the message ""No fixtures found."" It would be more informative to mention the fixture name in  that message. I suggest to change one line in django/core/management/commands/loaddata.py:

{{{
 if fixture_object_count == 0:
     if verbosity >= 1:
         self.stdout.write(""No fixtures found.\n"")
}}}

Change this to:

{{{
 if fixture_object_count == 0:
     if verbosity >= 1:
         self.stdout.write(""No %r fixtures found.\n"" % fixture_name)
}}}





"	Cleanup/optimization	closed	Core (Serialization)	1.3	Normal	worksforme			Unreviewed	0	0	0	0	0	0
