From 04097cbb2610ab64f0e73d2ce9773362b4c0fb40 Mon Sep 17 00:00:00 2001 From: Scott Maxwell Date: Thu, 31 Oct 2013 11:37:37 -0700 Subject: [PATCH] Switch feed from text to binary --- paramiko/channel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paramiko/channel.py b/paramiko/channel.py index d686c6d..182cd68 100644 --- a/paramiko/channel.py +++ b/paramiko/channel.py @@ -978,7 +978,7 @@ class Channel (object): def _feed_extended(self, m): code = m.get_int() - s = m.get_text() + s = m.get_binary() if code != 1: self._log(ERROR, 'unknown extended_data type %d; discarding' % code) return