Description:
jwt_tool 2.3.0 fails on Python 3.14 during first run:
configparser.InvalidWriteError
The issue occurs in createConfig() where ConfigParser.write() is called with dictionary keys beginning with # (used as comments).
As a result, jwtconf.ini is not fully created and subsequent runs fail with:
Removing the comment-style keys from the config dictionaries fixes the issue.
Description:
jwt_tool 2.3.0 fails on Python 3.14 during first run:
The issue occurs in
createConfig()whereConfigParser.write()is called with dictionary keys beginning with#(used as comments).As a result,
jwtconf.iniis not fully created and subsequent runs fail with:Removing the comment-style keys from the config dictionaries fixes the issue.