From fe942c40a0b4806525da9749d3fd04e34b188f57 Mon Sep 17 00:00:00 2001 From: Thomas <thomas.kool.12@gmail.com> Date: Thu, 14 Nov 2019 00:11:09 +1300 Subject: [PATCH] Correct openalpr_local config option name (#28746) Previously was "alp_bin" now "alpr_bin" like it is outlined in the documentation (https://www.home-assistant.io/integrations/openalpr_local/) --- homeassistant/components/openalpr_local/image_processing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/openalpr_local/image_processing.py b/homeassistant/components/openalpr_local/image_processing.py index 786f5ca69da..32a08b53165 100644 --- a/homeassistant/components/openalpr_local/image_processing.py +++ b/homeassistant/components/openalpr_local/image_processing.py @@ -47,7 +47,7 @@ OPENALPR_REGIONS = [ "vn2", ] -CONF_ALPR_BIN = "alp_bin" +CONF_ALPR_BIN = "alpr_bin" DEFAULT_BINARY = "alpr" -- GitLab