From 198d574286c5a2fda89f04707e506433c3baff89 Mon Sep 17 00:00:00 2001 From: Lukas Garberg Date: Sat, 7 Oct 2023 12:35:53 +0200 Subject: [PATCH] cli: Update for new configparser Small adjustment to comply with new behaviour of the configparser module. --- nipap-cli/helper-nipap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nipap-cli/helper-nipap b/nipap-cli/helper-nipap index 7081a9002..f9f759783 100755 --- a/nipap-cli/helper-nipap +++ b/nipap-cli/helper-nipap @@ -28,7 +28,7 @@ if __name__ == '__main__': userrcfile = os.path.expanduser('~/.nipaprc') # read configuration - cfg = configparser.ConfigParser({'prefix_list_columns': None }) + cfg = configparser.ConfigParser({'prefix_list_columns': ''}) cfg.read(userrcfile) nipap_cli.cfg = cfg