Skip to content

Commit

Permalink
Properly import to_text()
Browse files Browse the repository at this point in the history
  • Loading branch information
nickgryg committed Apr 25, 2021
1 parent a7eca68 commit 39785ac
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/ansible/modules/apt.py
Expand Up @@ -8,7 +8,6 @@
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)

from __future__ import absolute_import, division, print_function
from ansible.module_utils._text import to_text
__metaclass__ = type


Expand Down Expand Up @@ -329,7 +328,7 @@

from ansible.module_utils.basic import AnsibleModule
from ansible.module_utils.common.respawn import has_respawned, probe_interpreters_for_module, respawn_module
from ansible.module_utils._text import to_bytes, to_native
from ansible.module_utils._text import to_bytes, to_native, to_text
from ansible.module_utils.six import PY3
from ansible.module_utils.urls import fetch_file

Expand Down

0 comments on commit 39785ac

Please sign in to comment.