From 9e4b8503a28589ac46853c33840bcae773ebad44 Mon Sep 17 00:00:00 2001 From: ckuhtz Date: Wed, 28 Dec 2022 02:00:34 -0800 Subject: [PATCH] reversed mm-yyyy to yyyy-mm as per the desc (#25422) --- source/_integrations/ring.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_integrations/ring.markdown b/source/_integrations/ring.markdown index 79c8e98851f..980567a5080 100644 --- a/source/_integrations/ring.markdown +++ b/source/_integrations/ring.markdown @@ -86,7 +86,7 @@ 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') }}" + subdir: "{{ state_attr('camera.front_door', 'friendly_name') }}/{{ now().strftime('%Y.%m') }}" filename: "{{ now().strftime('%Y-%m-%d-at-%H-%M-%S') }}.mp4" ``` {% endraw %}