﻿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
3495	created_models doesn't match post_syncdb's app	Yary H <spam-django@…>	Adrian Holovaty	"When post_syncdb triggers a signal for one app, the ""created_models"" includes models created in other apps.


{{{
from django.dispatch import dispatcher
from django.db.models import signals

def show_it(sender, app, created_models, verbosity, interactive):
  print app, created_models
 
dispatcher.connect(show_it,signal=signals.post_syncdb)
}}}

Put that in the __init__.py in one app of a multi-app project and try running ""manage.py test""- notice that for every app, show_it is called with ""created_models"" that don't necessarily match ""app""."		closed	Core (Other)	dev		worksforme		not.com@…	Design decision needed	0	0	0	0	0	0
