You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The trend in django core has been to move from lots of NAMESPACE_* settings to NAMESPACE = {'FOO': 1}. I think in the interest of reducing settings namespace bloat, and simplifying some code in a few places (well, replacing getattr() with .get(), mostly), this is a good trend and we should move the WAFFLE_* settings into a WAFFLE dict.
The text was updated successfully, but these errors were encountered:
The trend in django core has been to move from lots of
NAMESPACE_*
settings toNAMESPACE = {'FOO': 1}
. I think in the interest of reducing settings namespace bloat, and simplifying some code in a few places (well, replacinggetattr()
with.get()
, mostly), this is a good trend and we should move theWAFFLE_*
settings into aWAFFLE
dict.The text was updated successfully, but these errors were encountered: