From 7d793eea81e262271546d2a2849126526b27b3b4 Mon Sep 17 00:00:00 2001 From: Macley <26381427+Macleykun@users.noreply.github.com> Date: Sun, 9 Oct 2022 14:26:52 +0200 Subject: [PATCH] Fix ring download with date and time extensions documentation (#24448) When setting up the ring extension, i noticed that i couldn't access my HA. Looking at the logs, i noticed there was an error: `Failed to parse configuration.yaml: while scanning for the next token found character '%' that cannot start any token` It seems that there were double quotes in a double quoted config example. Changing them to single quotes worked and this is also tested. --- source/_integrations/ring.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_integrations/ring.markdown b/source/_integrations/ring.markdown index d7cc419e06e..9d673036b1c 100644 --- a/source/_integrations/ring.markdown +++ b/source/_integrations/ring.markdown @@ -88,8 +88,8 @@ You may consider some modifications in the subdirectory and the filename to suit ```yaml data: url: "{{ state_attr('camera.front_door', 'video_url') }}" - subdir: "{{ state_attr('camera.front_door', 'friendly_name') }}/{{ now().strftime("%m.%Y") }}" - filename: "{{ now().strftime("%Y-%m-%d-at-%H-%M-%S") }}.mp4" + subdir: "{{ state_attr('camera.front_door', 'friendly_name') }}/{{ now().strftime('%m.%Y') }}" + filename: "{{ now().strftime('%Y-%m-%d-at-%H-%M-%S') }}.mp4" ``` {% endraw %}