From 4f2e4b877258d4efdb47a7b3c24bf4c2dd5a3efa Mon Sep 17 00:00:00 2001 From: mpenning Date: Fri, 20 Oct 2023 06:13:02 -0500 Subject: [PATCH] Correct typo in Error Type --- ciscoconfparse/ccp_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ciscoconfparse/ccp_util.py b/ciscoconfparse/ccp_util.py index 6d71adc1..ca8327bf 100644 --- a/ciscoconfparse/ccp_util.py +++ b/ciscoconfparse/ccp_util.py @@ -4052,7 +4052,7 @@ def remove(self, arg): raise MismatchedType(arg) else: # Otherwise, flag the problem as an invalid member... - raise invalidMember(arg) + raise InvalidMember(arg) return self