Skip to content

Commit

Permalink
Py3.12 bug (#32)
Browse files Browse the repository at this point in the history
* changed config.readfp to config.read_file
* amended version
  • Loading branch information
MikeSchiessl authored Oct 11, 2023
1 parent 836350e commit 4dd4808
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.2
0.6.3
2 changes: 1 addition & 1 deletion bin/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ def __init__(self, config_values, configuration, flags=None):

if os.path.isfile(arguments["edgerc"]):
config = ConfigParser()
config.readfp(open(arguments["edgerc"]))
config.read_file(open(arguments["edgerc"]))
if not config.has_section(configuration):
err_msg = "ERROR: No section named %s was found in your %s file\n" % \
(configuration, arguments["edgerc"])
Expand Down
2 changes: 1 addition & 1 deletion cli.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"commands": [
{
"name": "eaa",
"version": "0.6.2",
"version": "0.6.3",
"description": "Akamai CLI for Enterprise Application Access (EAA)"
}
]
Expand Down
2 changes: 1 addition & 1 deletion libeaa/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"""

#: cli-eaa version [PEP 8]
__version__ = '0.6.2'
__version__ = '0.6.3'

import sys
from threading import Event
Expand Down

0 comments on commit 4dd4808

Please sign in to comment.