1
mirror of https://github.com/home-assistant/core synced 2024-07-30 21:18:57 +02:00

Fix flip-flopped substitutions in Custom Version Type Warning message. (#46768)

This commit is contained in:
shbatm 2021-02-18 20:00:14 -06:00 committed by GitHub
parent da51e23514
commit 5df46b60e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -806,7 +806,7 @@ def custom_integration_warning(integration: Integration) -> None:
if not validate_custom_integration_version(integration.manifest["version"]): if not validate_custom_integration_version(integration.manifest["version"]):
_LOGGER.warning( _LOGGER.warning(
CUSTOM_WARNING_VERSION_TYPE, CUSTOM_WARNING_VERSION_TYPE,
integration.domain,
integration.manifest["version"], integration.manifest["version"],
integration.domain, integration.domain,
integration.domain,
) )