Opened 15 years ago

Closed 15 years ago

Last modified 12 years ago

#10526 closed (fixed)

Django INSTALLED_APPS with '.*' processing too stingy

Reported by: Alex Gaynor Owned by: nobody
Component: Core (Other) Version: dev
Severity: Keywords:
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Alex Gaynor)

When django sees an app in INSTALLED apps with .* it expands that to include all apps in that directory. However it omits any apps with '_' in their names.

Change History (7)

comment:1 by Alex Gaynor, 15 years ago

Description: modified (diff)

Describe the problem better.

comment:2 by Malcolm Tredinnick, 15 years ago

Triage Stage: UnreviewedAccepted
Version: 1.0SVN

Looks like a variant on the fix that went in for #9323. This is valid.

comment:3 by Malcolm Tredinnick, 15 years ago

milestone: 1.1

comment:4 by Malcolm Tredinnick, 15 years ago

Resolution: fixed
Status: newclosed

(In [10078]) Fixed #10526 -- More fixes when specifying installed apps using "foo.*".

This adds a case that was missed in r9924: underscore handling.

comment:5 by Malcolm Tredinnick, 15 years ago

(In [10079]) Fixed #10526 -- More fixes when specifying installed apps using "foo.*".

This adds a case that was missed in r9925: underscore handling.

Backport of r10078 from trunk.

comment:6 by Malcolm Tredinnick, 15 years ago

Gargh. The two referenced commits should have been r9994 and r9995, in case anybody is following this up at a later date.

comment:7 by Jacob, 12 years ago

milestone: 1.1

Milestone 1.1 deleted

Note: See TracTickets for help on using tickets.
Back to Top