From 1ff7b5df50c7074270236d9e3dba7df63c59f4bf Mon Sep 17 00:00:00 2001 From: Matthew Stidham Date: Wed, 24 Feb 2021 13:57:00 -0800 Subject: [PATCH] Correct the rm_group command in testgroup.py Signed-off-by: Matthew Stidham --- py-scripts/testgroup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-scripts/testgroup.py b/py-scripts/testgroup.py index 16dc93d8..69b91ad5 100755 --- a/py-scripts/testgroup.py +++ b/py-scripts/testgroup.py @@ -64,7 +64,7 @@ class TestGroup(LFCliBase): if self.tg_action == 'del': print("Removing %s" % self.tg_profile.group_name) if self.tg_profile.check_group_exists(): - self.tg_profile.remove_group() + self.tg_profile.rm_group() else: print("%s not found, no action taken" % self.tg_profile.group_name)