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
This commit is contained in:
Terence Foxcroft 2018-06-26 06:17:42 +02:00 committed by Franck Nijhof
parent 801d2aa240
commit df3f3a8239

View File

@ -104,7 +104,7 @@ sensor:
command: "python3 occasion.py"
```
<p class='note'>
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"
</p>