Skip to content

Commit

Permalink
cli: Update for new configparser
Browse files Browse the repository at this point in the history
Small adjustment to comply with new behaviour of the configparser
module.
  • Loading branch information
garberg committed Oct 7, 2023
1 parent 227bba1 commit 198d574
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nipap-cli/helper-nipap
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 198d574

Please sign in to comment.