From d393436727014b9eddf71009065f65a59ff3837c Mon Sep 17 00:00:00 2001 From: Tony Asleson Date: Mon, 6 Jun 2022 09:57:20 -0500 Subject: [PATCH] lvmdbusd: Correct grammar in lvm shell proxy comments --- daemons/lvmdbusd/lvm_shell_proxy.py.in | 4 ++-- 1 file 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)