﻿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
2753	Signals are picky about how senders are imported	Joeboy	Adrian Holovaty	"This works as expected:
{{{
from myproject.myapp import models as myapp_app
dispatcher.connect( myfunction, signal=signals.post_syncdb, sender=myapp_app)
}}}

This fails silently and mysteriously:
{{{
from myapp import models as myapp_app
dispatcher.connect( myfunction, signal=signals.post_syncdb, sender=myapp_app)
}}}

Thus decoupling is broken, and it takes the uninitiated user (ie. me) ages to work out what the problem is."	defect	closed	Core (Other)	dev	normal	duplicate	signal, signals, sender, senders, dispatcher	django25@…	Unreviewed	0	0	0	0	0	0
