issue #429: fix sudo regression.

This commit is contained in:
David Wilson 2019-01-29 05:34:44 +00:00
parent ae8173a29f
commit fca5513610
1 changed files with 1 additions and 1 deletions

View File

@ -253,7 +253,7 @@ class Stream(mitogen.parent.Stream):
if password_sent:
raise PasswordError(self.password_incorrect_msg)
self.diag_stream.transmit_side.write(
mitogen.core.to_text(self.password + '\n').encode('utf-8')
(mitogen.core.to_text(self.password) + '\n').encode('utf-8')
)
password_sent = True