mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00:00
Make the source path into a byte string before passing to os.path
This commit is contained in:
@@ -107,7 +107,7 @@ class ActionModule(ActionBase):
|
||||
source_files = []
|
||||
|
||||
# If source is a directory populate our list else source is a file and translate it to a tuple.
|
||||
if os.path.isdir(source):
|
||||
if os.path.isdir(to_bytes(source)):
|
||||
# Get the amount of spaces to remove to get the relative path.
|
||||
if source_trailing_slash:
|
||||
sz = len(source)
|
||||
|
||||
Reference in New Issue
Block a user