aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert P. J. Day <rpjday@crashcourse.ca>2014-08-12 05:18:11 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-08-19 09:07:05 +0100
commitfd293c5fcc89bc7a541d09e88a6aec5e0b2a1db2 (patch)
tree234faa6b3a8cdfd60bd166291552f3162ef64eb4
parent4e9aef14d747c37444a4fc683f9641906906afe9 (diff)
downloadbitbake-fd293c5fcc89bc7a541d09e88a6aec5e0b2a1db2.tar.gz
daemonize.py: Non-functional comment/aesthetic fixes.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/daemonize.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/bb/daemonize.py b/lib/bb/daemonize.py
index f0714b3af..898820b06 100644
--- a/lib/bb/daemonize.py
+++ b/lib/bb/daemonize.py
@@ -1,5 +1,5 @@
"""
-Python Deamonizing helper
+Python Daemonizing helper
Configurable daemon behaviors:
@@ -25,7 +25,7 @@ __version__ = "0.2"
# Standard Python modules.
import os # Miscellaneous OS interfaces.
-import sys # System-specific parameters and functions.
+import sys # System-specific parameters and functions.
# Default daemon parameters.
# File mode creation mask of the daemon.
@@ -128,7 +128,7 @@ def createDaemon(function, logfile):
# of methods to accomplish this task. Three are listed below.
#
# Try the system configuration variable, SC_OPEN_MAX, to obtain the maximum
- # number of open file descriptors to close. If it doesn't exists, use
+ # number of open file descriptors to close. If it doesn't exist, use
# the default value (configurable).
#
# try: