From df3f3a82393c0a85ba8d8892c3f83e416b653cdf Mon Sep 17 00:00:00 2001 From: Terence Foxcroft Date: Tue, 26 Jun 2018 06:17:42 +0200 Subject: [PATCH] Fix incorrect path in Group Visibility example (#5602) The path for calling the occasion.py script referenced in the Group Visibility example when using docker should be /config/occasion.py and not /command/occasion.py --- source/_docs/configuration/group_visibility.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_docs/configuration/group_visibility.markdown b/source/_docs/configuration/group_visibility.markdown index 0ea062deb9b..c5458e4bf2b 100644 --- a/source/_docs/configuration/group_visibility.markdown +++ b/source/_docs/configuration/group_visibility.markdown @@ -104,7 +104,7 @@ sensor: command: "python3 occasion.py" ```

-If you are using docker to run Home Assistant then the occasion.py script will be placed under /config. Your command should instead be: command: "python3 /command/occasion.py" +If you are using docker to run Home Assistant then the occasion.py script will be placed under /config. Your command should instead be: command: "python3 /config/occasion.py"