summaryrefslogtreecommitdiffstats
path: root/source/n/pssh/pssh-2.3.1-py3-str-bytes-encode.patch
diff options
context:
space:
mode:
Diffstat (limited to 'source/n/pssh/pssh-2.3.1-py3-str-bytes-encode.patch')
-rw-r--r--source/n/pssh/pssh-2.3.1-py3-str-bytes-encode.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/source/n/pssh/pssh-2.3.1-py3-str-bytes-encode.patch b/source/n/pssh/pssh-2.3.1-py3-str-bytes-encode.patch
deleted file mode 100644
index 1a6b4cc3a..000000000
--- a/source/n/pssh/pssh-2.3.1-py3-str-bytes-encode.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/psshlib/askpass_server.py b/psshlib/askpass_server.py
-index 4293164..4680749 100644
---- a/psshlib/askpass_server.py
-+++ b/psshlib/askpass_server.py
-@@ -69,7 +69,7 @@ class PasswordServer(object):
- buffer = self.buffermap[fd]
- conn = self.socketmap[fd]
- try:
-- bytes_written = conn.send(buffer)
-+ bytes_written = conn.send(buffer.encode('utf-8'))
- except socket.error:
- _, e, _ = sys.exc_info()
- number = e.args[0]