Making yum_repository module compatible with Python 3 (#3487)
This commit is contained in:
parent
36f1ecc5be
commit
c7ae273f13
1 changed files with 3 additions and 3 deletions
|
@ -19,10 +19,10 @@
|
|||
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
import ConfigParser
|
||||
import os
|
||||
from ansible.module_utils.basic import AnsibleModule
|
||||
from ansible.module_utils.pycompat24 import get_exception
|
||||
from ansible.module_utils.six.moves import configparser
|
||||
|
||||
|
||||
DOCUMENTATION = '''
|
||||
|
@ -469,7 +469,7 @@ class YumRepo(object):
|
|||
module = None
|
||||
params = None
|
||||
section = None
|
||||
repofile = ConfigParser.RawConfigParser()
|
||||
repofile = configparser.RawConfigParser()
|
||||
|
||||
# List of parameters which will be allowed in the repo file output
|
||||
allowed_params = [
|
||||
|
@ -576,7 +576,7 @@ class YumRepo(object):
|
|||
if len(self.repofile.sections()):
|
||||
# Write data into the file
|
||||
try:
|
||||
fd = open(self.params['dest'], 'wb')
|
||||
fd = open(self.params['dest'], 'w')
|
||||
except IOError:
|
||||
e = get_exception()
|
||||
self.module.fail_json(
|
||||
|
|
Loading…
Reference in a new issue