summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Quast <contact@jeffquast.com>2014-11-23 04:31:14 -0800
committerJeff Quast <contact@jeffquast.com>2014-11-23 04:31:14 -0800
commit83a1f3cc9659cd41f3d7877cd4a0023aef409639 (patch)
treeb093b717da315547fd3eef44e7d707ba3215b5e3
parent00c8aaed9605c446844bbe379582753492a3627b (diff)
downloadpexpect-simple-ftp-example-fix.tar.gz
Simple fix for ftp.openbsd.org examplesimple-ftp-example-fix
-rw-r--r--doc/overview.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/overview.rst b/doc/overview.rst
index 133767f..a04e389 100644
--- a/doc/overview.rst
+++ b/doc/overview.rst
@@ -17,7 +17,7 @@ Here is an example of Pexpect in action::
child.expect('ftp> ')
child.sendline('lcd /tmp')
child.expect('ftp> ')
- child.sendline('cd pub')
+ child.sendline('cd pub/OpenBSD')
child.expect('ftp> ')
child.sendline('get README')
child.expect('ftp> ')