﻿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
10887	admin.autodiscover	Luc Saffre	nobody	"In {{{django/contrib/admin/__init__.py}}}, I suggest to change the following code:

{{{
    try:
        app_path = import_module(app).__path__
    except AttributeError:
        continue
}}}

into: 

{{{
    mod = import_module(app)
    try:
        app_path = mod.__path__
    except AttributeError:
        continue
}}}

Otherwise there is a probably not intended behaviour if one of my modules is buggy and raises itself an AttributeError.

"		closed	contrib.admin	1.0		fixed			Ready for checkin	0	0	0	0	0	0
