[01/17] cooker: Fix typo "isn't"

Message ID 20220219164021.8344-1-zygmunt.krynicki@huawei.com
State New
Headers show
Series [01/17] cooker: Fix typo "isn't" | expand

Commit Message

Zygmunt Krynicki Feb. 19, 2022, 4:40 p.m. UTC
Signed-off-by: Zygmunt Krynicki <zygmunt.krynicki@huawei.com>
---
 lib/bb/cooker.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Patch

diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py
index d1d4e325..d15b0eb8 100644
--- a/lib/bb/cooker.py
+++ b/lib/bb/cooker.py
@@ -607,7 +607,7 @@  class BBCooker:
             data.emit_env(env, envdata, True)
             logger.plain(env.getvalue())
 
-        # emit the metadata which isnt valid shell
+        # emit the metadata which isn't valid shell
         for e in sorted(envdata.keys()):
             if envdata.getVarFlag(e, 'func', False) and envdata.getVarFlag(e, 'python', False):
                 logger.plain("\npython %s () {\n%s}\n", e, envdata.getVar(e, False))