From f21dff5b8932b45243b629f035b978fc224bed3e Mon Sep 17 00:00:00 2001 From: Oliver Lang Date: Tue, 18 Oct 2022 19:46:11 +0200 Subject: [PATCH] bitbake: cooker: fix a typo (Bitbake rev: cf23612f4e8946b9ed4c9f87b451f32b8c471df2) Signed-off-by: Oliver Lang Signed-off-by: Richard Purdie --- bitbake/lib/bb/cooker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index 32a529f0f9..1da2f03197 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py @@ -250,7 +250,7 @@ class BBCooker: def process_inotify_updates(self): for n in [self.confignotifier, self.notifier]: if n and n.check_events(timeout=0): - # read notified events and enqeue them + # read notified events and enqueue them n.read_events() n.process_events()