From ec50979b031e85ab155126aae51ab15b255f4be9 Mon Sep 17 00:00:00 2001 From: Tony Asleson Date: Tue, 23 Aug 2022 10:24:37 -0500 Subject: [PATCH] lvmdbusd: Correct typos --- daemons/lvmdbusd/lvmdb.py.in | 2 +- test/dbus/lvmdbustest.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/daemons/lvmdbusd/lvmdb.py.in b/daemons/lvmdbusd/lvmdb.py.in index 87474d0f3..d462e0cf8 100644 --- a/daemons/lvmdbusd/lvmdb.py.in +++ b/daemons/lvmdbusd/lvmdb.py.in @@ -161,7 +161,7 @@ class DataStore(object): c_lvs = OrderedDict() c_lv_full_lookup = {} - # Each item item in the report is a collection of information pertaining + # Each item in the report is a collection of information pertaining # to the vg for r in _all['report']: # Get the lv data for this VG. diff --git a/test/dbus/lvmdbustest.py b/test/dbus/lvmdbustest.py index 878300a97..c4e95b7cc 100755 --- a/test/dbus/lvmdbustest.py +++ b/test/dbus/lvmdbustest.py @@ -215,7 +215,7 @@ class TestDbusService(unittest.TestCase): def setUp(self): # Because of the sensitive nature of running LVM tests we will only # run if we have PVs and nothing else, so that we can be confident that - # we are not mucking with someones data on their system + # we are not mucking with someone's data on their system self.objs, self.bus = get_objects() if len(self.objs[PV_INT]) == 0: std_err_print('No PVs present exiting!')