summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Dougherty <joseph.dougherty@gmail.com>2014-07-17 14:54:22 -0400
committerJoe Dougherty <joseph.dougherty@gmail.com>2014-07-17 14:54:22 -0400
commit679f40e3ae9a382924a7ffa3f1e86439ca2c2127 (patch)
treeea535753e6ca46c8003701ab0323c45c3f1e6707
parentcfca6f309c1c8109bd3ad023c6382849fb5c6632 (diff)
downloadpexpect-679f40e3ae9a382924a7ffa3f1e86439ca2c2127.tar.gz
Update commonissues.rst
Fixed minor typo in "Controlling SSH on Solaris" usage section.
-rw-r--r--doc/commonissues.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/commonissues.rst b/doc/commonissues.rst
index 2efae46..c4fc58d 100644
--- a/doc/commonissues.rst
+++ b/doc/commonissues.rst
@@ -89,7 +89,7 @@ sometimes will not allow TTY password authentication. For example, you may
expect SSH to ask you for a password using code like this::
child = pexpect.spawn('ssh user@example.com')
- child.expect('assword')
+ child.expect('password')
child.sendline('mypassword')
You may see the following error come back from a spawned child SSH::