Skip to content

Commit

Permalink
readfp -> read_file
Browse files Browse the repository at this point in the history
Signed-off-by: Luca Della Vedova <[email protected]>
  • Loading branch information
luca-della-vedova committed Jun 18, 2024
1 parent de2a04f commit 6b1098d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdeb/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -799,7 +799,7 @@ def __init__(self,
cfg = ConfigParser.ConfigParser(cfg_defaults)
for cfg_file in cfg_files:
with codecs.open(cfg_file, mode='r', encoding='utf-8') as fd:
cfg.readfp(fd)
cfg.read_file(fd)

if sdist_dsc_command is not None:
# Allow distutils commands to override config files (this lets
Expand Down

0 comments on commit 6b1098d

Please sign in to comment.