Make glob preserve order (#6224)

This commit is contained in:
Andrey 2017-02-25 22:54:04 +02:00 committed by Paulus Schoutsen
parent a80fd2f243
commit 85d0f2e861
1 changed files with 1 additions and 1 deletions

View File

@ -309,7 +309,7 @@ def async_process_ha_core_config(hass, config):
# Customize
cust_exact = dict(config[CONF_CUSTOMIZE])
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():
pkg_cust = pkg.get(CONF_CORE)