All of lore.kernel.org
 help / color / mirror / Atom feed
* [scarthgap][PATCH] oe-setup-build: Fix typo
@ 2026-03-09 23:11 Clayton Casciato
  0 siblings, 0 replies; only message in thread
From: Clayton Casciato @ 2026-03-09 23:11 UTC (permalink / raw)
  To: OE Core mailing list, yoann.congal; +Cc: reatmon, richard.purdie

From:
https://git.openembedded.org/openembedded-core/commit/?id=275a3c015d37729c3b0c9cc4395d50ea2f210f02

A variable was mistyped in an error message resulting in this error:

NameError: name 'tempalte_name' is not defined. Did you mean: 'template_name'?

Signed-off-by: Ryan Eatmon <reatmon@ti.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Clayton Casciato <majortomtosourcecontrol@gmail.com>
---
Sponsor: 21SoftWare LLC

 scripts/oe-setup-build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/oe-setup-build b/scripts/oe-setup-build
index c0476992a2..1cb06b3b79 100755
--- a/scripts/oe-setup-build
+++ b/scripts/oe-setup-build
@@ -77,7 +77,7 @@ def find_template(template_name, templates):
         for t in templates:
             if t["templatename"] == template_name:
                 return t
-        print("Configuration {} is not one of {}, please try again.".format(tempalte_name, [t["templatename"] for t in templates]))
+        print("Configuration {} is not one of {}, please try again.".format(template_name, [t["templatename"] for t in templates]))
         return None
 
 def setup_build_env(args):


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2026-03-09 23:11 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-09 23:11 [scarthgap][PATCH] oe-setup-build: Fix typo Clayton Casciato

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.