From b05d98ba6085a57523a5f1a3d8cb308210706634 Mon Sep 17 00:00:00 2001 From: Jin Eguchi Date: Fri, 10 Sep 2021 22:16:32 +0900 Subject: [PATCH] Change SafeConfigParser()->ConfigParser() --- fednode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fednode.py b/fednode.py index 82ac645..2e464e5 100755 --- a/fednode.py +++ b/fednode.py @@ -272,7 +272,7 @@ def main(): # for all other commands # if config doesn't exist, only the 'install' command may be run config_existed = os.path.exists(FEDNODE_CONFIG_PATH) - config = configparser.SafeConfigParser() + config = configparser.ConfigParser() if not config_existed: if args.command != 'install': print("config file {} does not exist. Please run the 'install' command first".format(FEDNODE_CONFIG_FILE))