More path encoding fixes.

This commit is contained in:
Matt Clay 2019-01-16 14:15:10 -08:00
parent 0f846f39ca
commit b971ebd343
2 changed files with 2 additions and 2 deletions

View file

@ -981,7 +981,7 @@ class ActionBase(with_metaclass(ABCMeta, object)):
# Change directory to basedir of task for command execution when connection is local
if self._connection.transport == 'local':
cwd = os.getcwd()
os.chdir(self._loader.get_basedir())
os.chdir(to_bytes(self._loader.get_basedir()))
try:
rc, stdout, stderr = self._connection.exec_command(cmd, in_data=in_data, sudoable=sudoable)
finally: