👕 Fixes a typo in method name (#702)

This commit is contained in:
Franck Nijhof 2018-09-17 23:11:53 +02:00 committed by Pascal Vizeli
parent 17904d70d8
commit f5845564db
2 changed files with 2 additions and 2 deletions

View File

@ -608,7 +608,7 @@ class Addon(CoreSysAttributes):
return vol.Schema(dict)
return vol.Schema(vol.All(dict, validate_options(raw_schema)))
def test_udpate_schema(self):
def test_update_schema(self):
"""Check if the exists config valid after update."""
if not self.is_installed or self.is_detached:
return True

View File

@ -67,7 +67,7 @@ class Tasks(CoreSysAttributes):
if addon.version_installed == addon.last_version:
continue
if addon.test_udpate_schema():
if addon.test_update_schema():
tasks.append(addon.update())
else:
_LOGGER.warning(