Add some missing imports from last night's py3 fixes (#17196)
This commit is contained in:
parent
0b070a04d0
commit
76f9935634
3 changed files with 3 additions and 2 deletions
|
@ -292,7 +292,7 @@ class DataLoader():
|
|||
|
||||
result = None
|
||||
if not source:
|
||||
display.warning('Invalid request to find a file that matches an empty string or "null" value')
|
||||
display.warning('Invalid request to find a file that matches an empty string or "null" value')
|
||||
elif source.startswith('~') or source.startswith(os.path.sep):
|
||||
# path is absolute, no relative needed, check existence and return source
|
||||
test_path = unfrackpath(b_source)
|
||||
|
|
|
@ -30,6 +30,7 @@ except ImportError:
|
|||
|
||||
from ansible.errors import AnsibleError
|
||||
from ansible.plugins.lookup import LookupBase
|
||||
from ansible.utils.unicode import to_bytes
|
||||
|
||||
|
||||
def _parse_params(term):
|
||||
|
|
|
@ -21,7 +21,7 @@ import os
|
|||
|
||||
from ansible.errors import AnsibleError
|
||||
from ansible.plugins.lookup import LookupBase
|
||||
from ansible.utils.unicode import to_unicode
|
||||
from ansible.utils.unicode import to_unicode, to_bytes
|
||||
|
||||
try:
|
||||
from __main__ import display
|
||||
|
|
Loading…
Reference in a new issue