#12744 closed (fixed)
Debug page fails if settings has dict of tuples with non string
Reported by: | Karataev Pavel | Owned by: | nobody |
---|---|---|---|
Component: | Uncategorized | Version: | dev |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
After http://code.djangoproject.com/ticket/12736
debug page fails on settings like:
NAME = {('localhost', 888): ('dev', 10888)}
Note:
See TracTickets
for help on using tickets.
(In [12361]) Fixed #12744 -- Improved the settings cleansing process the work with dictionary settings that are keyed by non-strings. Thanks to minmax for the report.