Skip to content

Commit

Permalink
Make compatible with current ansible-core devel (ansible-collections#…
Browse files Browse the repository at this point in the history
…7379)

Make compatible with current ansible-core devel.
  • Loading branch information
felixfontein authored and Eric Trombly committed Oct 25, 2023
1 parent 06305e1 commit cdad817
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions changelogs/fragments/7379-url.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
bugfixes:
- "memset module utils - make compatible with ansible-core 2.17 (https://github.com/ansible-collections/community.general/pull/7379)."
3 changes: 2 additions & 1 deletion plugins/module_utils/memset.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@
__metaclass__ = type

from ansible.module_utils.six.moves.urllib.parse import urlencode
from ansible.module_utils.urls import open_url, urllib_error
from ansible.module_utils.urls import open_url
from ansible.module_utils.basic import json
import ansible.module_utils.six.moves.urllib.error as urllib_error


class Response(object):
Expand Down

0 comments on commit cdad817

Please sign in to comment.