From c7bbaa6d310946d826a49e3d33360c7ccc7431d4 Mon Sep 17 00:00:00 2001 From: Mike <7278201+mike391@users.noreply.github.com> Date: Fri, 8 Nov 2019 05:02:39 -0500 Subject: [PATCH] Update shell_command.markdown (#11126) Nested single quotes should be double quotes. --- source/_integrations/shell_command.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_integrations/shell_command.markdown b/source/_integrations/shell_command.markdown index c1072695ae7..6eab549b7b2 100644 --- a/source/_integrations/shell_command.markdown +++ b/source/_integrations/shell_command.markdown @@ -55,6 +55,6 @@ input_number: {% raw %} shell_command: - set_ac_to_slider: 'irsend SEND_ONCE DELONGHI AC_{{ states('input_number.ac_temperature') }}_AUTO' + set_ac_to_slider: 'irsend SEND_ONCE DELONGHI AC_{{ states("input_number.ac_temperature") }}_AUTO' {% endraw %} ```