Remove ref to watchers (#5108)

`watchers` is not required, was in an earlier version
This commit is contained in:
Robin 2018-04-04 18:49:40 +01:00 committed by Franck Nijhof
parent 5869b00342
commit 66714881d7

View File

@ -20,8 +20,7 @@ To configure the `folder_watcher` component add to you `configuration.yaml` file
```yaml
{% raw %}
folder_watcher:
watchers:
- folder: /config
- folder: /config
{% endraw %}
```
@ -44,11 +43,10 @@ Pattern matching using [fnmatch](https://docs.python.org/3.6/library/fnmatch.htm
```yaml
{% raw %}
folder_watcher:
watchers:
- folder: /config
patterns:
- '*.yaml'
- '*.txt'
- folder: /config
patterns:
- '*.yaml'
- '*.txt'
{% raw %}
```