summaryrefslogtreecommitdiff
path: root/pexpect/pxssh.py
diff options
context:
space:
mode:
authorJoel Edwards <joeledwards@gmail.com>2013-12-10 13:38:11 -0700
committerJoel Edwards <joeledwards@gmail.com>2013-12-11 07:37:56 -0700
commiteb7099c5c23f9acabb6265d1fb39e0c0d9b6ba66 (patch)
tree6797817cc1293209cc01c25051945717e5170544 /pexpect/pxssh.py
parentb6f8d73985be36b5f2f5a02e64d4586c1aab0cdf (diff)
downloadpexpect-eb7099c5c23f9acabb6265d1fb39e0c0d9b6ba66.tar.gz
Removed coerce_result argument from pexpect read_nonblocking method.
Diffstat (limited to 'pexpect/pxssh.py')
-rw-r--r--pexpect/pxssh.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pexpect/pxssh.py b/pexpect/pxssh.py
index e644a74..58b51ce 100644
--- a/pexpect/pxssh.py
+++ b/pexpect/pxssh.py
@@ -166,7 +166,7 @@ class pxssh (spawn):
while expired < total_timeout:
try:
- c = self.read_nonblocking(size=1, timeout=timeout, coerce_result=False)
+ c = self.read_nonblocking(size=1, timeout=timeout)
if prompt is None:
prompt = c
else: