From 36bedab26cb03c4c9fe41fb82981ea83bd6af61e Mon Sep 17 00:00:00 2001 From: Terence Hampson Date: Mon, 25 Sep 2023 15:57:19 -0400 Subject: [PATCH] chip-repl: Correct name of args variable (#29441) --- src/controller/python/chip/ChipReplStartup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controller/python/chip/ChipReplStartup.py b/src/controller/python/chip/ChipReplStartup.py index 7bc4988ddd1284..779636ed128bb8 100644 --- a/src/controller/python/chip/ChipReplStartup.py +++ b/src/controller/python/chip/ChipReplStartup.py @@ -107,7 +107,7 @@ def mattersetdebug(enableDebugMode: bool = True): caList = certificateAuthorityManager.activeCaList -devCtrl = caList[0].adminList[0].NewController(paaTrustStorePath=args.trustStore) +devCtrl = caList[0].adminList[0].NewController(paaTrustStorePath=args.trust_store) builtins.devCtrl = devCtrl atexit.register(StackShutdown)