mirror of
https://github.com/home-assistant/core.git
synced 2025-09-01 19:01:46 +02:00
fix error message for cv.matches_regex (#16175)
This commit is contained in:
committed by
Paulus Schoutsen
parent
cf8bd92d4d
commit
4cb9ac72b4
@@ -92,7 +92,7 @@ def matches_regex(regex):
|
||||
|
||||
if not regex.match(value):
|
||||
raise vol.Invalid('value {} does not match regular expression {}'
|
||||
.format(regex.pattern, value))
|
||||
.format(value, regex.pattern))
|
||||
|
||||
return value
|
||||
return validator
|
||||
|
Reference in New Issue
Block a user