summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornoah <noah@656d521f-e311-0410-88e0-e7920216d269>2005-11-21 17:01:37 +0000
committernoah <noah@656d521f-e311-0410-88e0-e7920216d269>2005-11-21 17:01:37 +0000
commit48ef4b13f3d40942f52f8a9623033beb1c698857 (patch)
tree363c027f7d5d39242ebb19d2660b994f65a63d95
parent0237daf623edeac85e0a0d9cae26cec343e289ff (diff)
downloadpexpect-48ef4b13f3d40942f52f8a9623033beb1c698857.tar.gz
Just changed default option in rippy.py. sfupload also shows logging output.
git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@341 656d521f-e311-0410-88e0-e7920216d269
-rwxr-xr-xpexpect/examples/rippy.py2
-rwxr-xr-xpexpect/tools/sfupload.py1
2 files changed, 2 insertions, 1 deletions
diff --git a/pexpect/examples/rippy.py b/pexpect/examples/rippy.py
index 4e718e1..cd25cef 100755
--- a/pexpect/examples/rippy.py
+++ b/pexpect/examples/rippy.py
@@ -121,7 +121,7 @@ at 128 kBitS. 96 kBitS is a good trade-off if you are trying to fit a video onto
Normally this should be half of the audio sample rate.
This improves audio compression and quality.
Normally you don't need to change this.""",1),
-'delete_tmp_files_flag':("N","Delete temporary files when finished?","""If Y then video_transcoded_filename, audio_raw_filename, audio_compressed_filename,
+'delete_tmp_files_flag':("Y","Delete temporary files when finished?","""If Y then video_transcoded_filename, audio_raw_filename, audio_compressed_filename,
and 'divx2pass.log' will be deleted at the end.""",1)
}
diff --git a/pexpect/tools/sfupload.py b/pexpect/tools/sfupload.py
index aef303c..1331a02 100755
--- a/pexpect/tools/sfupload.py
+++ b/pexpect/tools/sfupload.py
@@ -6,6 +6,7 @@ import pexpect
import sys
child = pexpect.spawn('ftp upload.sourceforge.net')
+child.logfile = sys.stdout
child.expect('Name .*: ')
child.sendline('anonymous')
child.expect('Password:')