mirror of
https://github.com/home-assistant/core.git
synced 2025-07-28 15:47:12 +00:00
Make glob preserve order (#6224)
This commit is contained in:
parent
6e51f7d987
commit
eb36174b51
@ -301,7 +301,7 @@ def async_process_ha_core_config(hass, config):
|
|||||||
# Customize
|
# Customize
|
||||||
cust_exact = dict(config[CONF_CUSTOMIZE])
|
cust_exact = dict(config[CONF_CUSTOMIZE])
|
||||||
cust_domain = dict(config[CONF_CUSTOMIZE_DOMAIN])
|
cust_domain = dict(config[CONF_CUSTOMIZE_DOMAIN])
|
||||||
cust_glob = dict(config[CONF_CUSTOMIZE_GLOB])
|
cust_glob = OrderedDict(config[CONF_CUSTOMIZE_GLOB])
|
||||||
|
|
||||||
for name, pkg in config[CONF_PACKAGES].items():
|
for name, pkg in config[CONF_PACKAGES].items():
|
||||||
pkg_cust = pkg.get(CONF_CORE)
|
pkg_cust = pkg.get(CONF_CORE)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user