diff options
| author | Jeff Quast <contact@jeffquast.com> | 2014-11-23 04:31:14 -0800 |
|---|---|---|
| committer | Jeff Quast <contact@jeffquast.com> | 2014-11-23 04:31:14 -0800 |
| commit | 83a1f3cc9659cd41f3d7877cd4a0023aef409639 (patch) | |
| tree | b093b717da315547fd3eef44e7d707ba3215b5e3 | |
| parent | 00c8aaed9605c446844bbe379582753492a3627b (diff) | |
| download | pexpect-simple-ftp-example-fix.tar.gz | |
Simple fix for ftp.openbsd.org examplesimple-ftp-example-fix
| -rw-r--r-- | doc/overview.rst | 2 |
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> ') |
