Navigation Menu

Skip to content

Commit

Permalink
Merge pull request #50235 from rallytime/fix-ssh-tests
Browse files Browse the repository at this point in the history
Don't encode the return values in utils/vt.py
  • Loading branch information
Nicole Thomas committed Oct 26, 2018
2 parents 52bfbb6 + d86782b commit 3317eb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion salt/utils/vt.py
Expand Up @@ -704,7 +704,7 @@ def _recv(self, maxsize):
if self.child_fd is not None:
fcntl.fcntl(self.child_fd, fcntl.F_SETFL, fd_flags)
# <---- Process STDOUT -------------------------------------------
return salt.utils.data.encode(stdout), salt.utils.data.encode(stderr)
return stdout, stderr

def __detect_parent_terminal_size(self):
try:
Expand Down

0 comments on commit 3317eb8

Please sign in to comment.