diff --git a/ciscoconfparse/ccp_util.py b/ciscoconfparse/ccp_util.py index a783c71b..0f3aa1fa 100644 --- a/ciscoconfparse/ccp_util.py +++ b/ciscoconfparse/ccp_util.py @@ -1741,9 +1741,9 @@ def __init__(self, arg=f"::1/{IPV6_MAX_PREFIXLEN}", strict=False, debug=0): tmp = re.split(r"\s+", arg.strip()) if len(tmp)==2: - arg=="/".join(tmp) + arg="/".join(tmp) elif len(tmp)==1: - arg==tmp[0] + arg=tmp[0] else: raise NotImplementedError(arg.strip())