1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-02 01:18:26 +03:00

lvmdbusd: Correct grammar in lvm shell proxy comments

This commit is contained in:
Tony Asleson 2022-06-06 09:57:20 -05:00
parent 6914942685
commit d393436727

View File

@ -123,7 +123,7 @@ class LVMShellProxy(object):
tmp_file = "%s/lvmdbus_report" % (tmp_dir) tmp_file = "%s/lvmdbus_report" % (tmp_dir)
try: try:
# Lets create fifo for the report output # Let's create a fifo for the report output
os.mkfifo(tmp_file, 0o600) os.mkfifo(tmp_file, 0o600)
except FileExistsError: except FileExistsError:
pass pass
@ -162,7 +162,7 @@ class LVMShellProxy(object):
except: except:
raise raise
finally: 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 # can be sure to clean up correctly no matter how we finish
os.unlink(tmp_file) os.unlink(tmp_file)
os.rmdir(tmp_dir) os.rmdir(tmp_dir)