mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
DigitalOcean inventory deprecation warning (#45054)
Handle DeprecationWarning for ConfigParser in python3 Fixes #45053
This commit is contained in:
parent
41db45ac33
commit
65c9090714
1 changed files with 1 additions and 1 deletions
|
@ -320,7 +320,7 @@ class DigitalOceanInventory(object):
|
||||||
|
|
||||||
def read_settings(self):
|
def read_settings(self):
|
||||||
""" Reads the settings from the digital_ocean.ini file """
|
""" Reads the settings from the digital_ocean.ini file """
|
||||||
config = ConfigParser.SafeConfigParser()
|
config = ConfigParser.ConfigParser()
|
||||||
config_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'digital_ocean.ini')
|
config_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'digital_ocean.ini')
|
||||||
config.read(config_path)
|
config.read(config_path)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue