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>
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):