From: Daniel Semkowicz Date: Mon, 2 Oct 2023 13:36:13 +0000 (+0200) Subject: uboot-extlinux-config.bbclass: Remove repeated space character X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e8a7a8d93c20f966bc2845d23696d01234cbb227;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git uboot-extlinux-config.bbclass: Remove repeated space character Signed-off-by: Daniel Semkowicz Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie --- diff --git a/meta/classes-recipe/uboot-extlinux-config.bbclass b/meta/classes-recipe/uboot-extlinux-config.bbclass index f752c16b9cd..f99100708dc 100644 --- a/meta/classes-recipe/uboot-extlinux-config.bbclass +++ b/meta/classes-recipe/uboot-extlinux-config.bbclass @@ -98,7 +98,7 @@ python do_create_extlinux_config() { if len(labels.split()) > 1: cfgfile.write('menu title Select the boot mode\n') - timeout = localdata.getVar('UBOOT_EXTLINUX_TIMEOUT') + timeout = localdata.getVar('UBOOT_EXTLINUX_TIMEOUT') if timeout: cfgfile.write('TIMEOUT %s\n' % (timeout))