Fix the warning to read the configuration file.
The method readfp is deprecated and will be removed in future versions. Use read_file method instead. Change-Id: I706e73505666e27dc409182db317f05284e6fe85
This commit is contained in:
parent
47a3b857cb
commit
4da6e47b8f
@ -59,7 +59,7 @@ def extras(project):
|
|||||||
if 'setup.cfg' not in project:
|
if 'setup.cfg' not in project:
|
||||||
return {}
|
return {}
|
||||||
c = configparser.ConfigParser()
|
c = configparser.ConfigParser()
|
||||||
c.readfp(io.StringIO(project['setup.cfg']))
|
c.read_file(io.StringIO(project['setup.cfg']))
|
||||||
if not c.has_section('extras'):
|
if not c.has_section('extras'):
|
||||||
return {}
|
return {}
|
||||||
return dict(c.items('extras'))
|
return dict(c.items('extras'))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user