mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Remember to use errors=strict since this is looking up a filename on the filesystem (ie it has to match exactly)
This commit is contained in:
parent
253376b3b7
commit
8f1303c81a
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ class ActionModule(ActionBase):
|
||||||
source_files = []
|
source_files = []
|
||||||
|
|
||||||
# If source is a directory populate our list else source is a file and translate it to a tuple.
|
# If source is a directory populate our list else source is a file and translate it to a tuple.
|
||||||
if os.path.isdir(to_bytes(source)):
|
if os.path.isdir(to_bytes(source, errors='strict')):
|
||||||
# Get the amount of spaces to remove to get the relative path.
|
# Get the amount of spaces to remove to get the relative path.
|
||||||
if source_trailing_slash:
|
if source_trailing_slash:
|
||||||
sz = len(source)
|
sz = len(source)
|
||||||
|
|
Loading…
Reference in a new issue