mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-19 07:11:25 +00:00
Fixing bug in setup related to StringIO fixes
This commit is contained in:
@@ -257,7 +257,7 @@ class Facts(object):
|
||||
# load raw ini
|
||||
cp = ConfigParser.ConfigParser()
|
||||
try:
|
||||
cp.readfp(StringIO.StringIO(out))
|
||||
cp.readfp(StringIO(out))
|
||||
except ConfigParser.Error:
|
||||
fact = "error loading fact - please check content"
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user