summaryrefslogtreecommitdiff
path: root/daemons/lvmdbusd/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'daemons/lvmdbusd/main.py')
-rw-r--r--daemons/lvmdbusd/main.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/daemons/lvmdbusd/main.py b/daemons/lvmdbusd/main.py
index e869bcec3..98b235f4e 100644
--- a/daemons/lvmdbusd/main.py
+++ b/daemons/lvmdbusd/main.py
@@ -67,7 +67,7 @@ def check_fr_size(value):
def install_signal_handlers():
# Because of the glib main loop stuff the python signal handler code is
- # apparently not usable and we need to use the glib calls instead
+ # apparently not usable, and we need to use the glib calls instead
signal_add = None
if hasattr(GLib, 'unix_signal_add'):
@@ -208,7 +208,7 @@ def main():
thread_list.append(
threading.Thread(target=process_request, name='process_request'))
- # Have a single thread handling updating lvm and the dbus model so we
+ # Have a single thread handling updating lvm and the dbus model, so we
# don't have multiple threads doing this as the same time
updater = StateUpdate()
thread_list.append(updater.thread)