summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Asleson <tasleson@redhat.com>2022-06-06 09:57:20 -0500
committerTony Asleson <tasleson@redhat.com>2022-06-30 10:55:16 -0500
commitd393436727014b9eddf71009065f65a59ff3837c (patch)
treea787eaf3f151fe79a768cffac5ec265867b3ca65
parent691494268502ddb20da2a14568984c0fa4f29f50 (diff)
downloadlvm2-d393436727014b9eddf71009065f65a59ff3837c.tar.gz
lvmdbusd: Correct grammar in lvm shell proxy comments
-rw-r--r--daemons/lvmdbusd/lvm_shell_proxy.py.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/daemons/lvmdbusd/lvm_shell_proxy.py.in b/daemons/lvmdbusd/lvm_shell_proxy.py.in
index e106ca36f..fa2415fcf 100644
--- a/daemons/lvmdbusd/lvm_shell_proxy.py.in
+++ b/daemons/lvmdbusd/lvm_shell_proxy.py.in
@@ -123,7 +123,7 @@ class LVMShellProxy(object):
tmp_file = "%s/lvmdbus_report" % (tmp_dir)
try:
- # Lets create fifo for the report output
+ # Let's create a fifo for the report output
os.mkfifo(tmp_file, 0o600)
except FileExistsError:
pass
@@ -162,7 +162,7 @@ class LVMShellProxy(object):
except:
raise
finally:
- # These will get deleted when the FD count goes to zero so we
+ # These will get deleted when the FD count goes to zero, so we
# can be sure to clean up correctly no matter how we finish
os.unlink(tmp_file)
os.rmdir(tmp_dir)