From bca4c37e3f35d06d544bffbe60c1a43b3878a76e Mon Sep 17 00:00:00 2001 From: Terence Hampson Date: Mon, 25 Sep 2023 17:44:40 +0000 Subject: [PATCH] Correct name of args variable --- 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)