[04/17] daemonize: Fix typo "separate"

Message ID 20220219164021.8344-4-zygmunt.krynicki@huawei.com
State Accepted, archived
Commit c93bc3849051c758fd7ca54226933172b0cb0c5d
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/daemonize.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Patch

diff --git a/lib/bb/daemonize.py b/lib/bb/daemonize.py
index 40fabd0c..4957bfd4 100644
--- a/lib/bb/daemonize.py
+++ b/lib/bb/daemonize.py
@@ -82,7 +82,7 @@  def createDaemon(function, logfile):
             sys.stdout = so
 
         # Have stdout and stderr be the same so log output matches chronologically
-        # and there aren't two seperate buffers
+        # and there aren't two separate buffers
         sys.stderr = sys.stdout
 
         try: