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
1 changed files with 1 additions and 1 deletions

View File

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