Re: [Tutor] question about type str

2006-07-29 Thread shawn bright
gee whiz, i thought i had poured over that line sufficiently.It works now. imagine that.thanks,shawnOn 7/29/06, Python < [EMAIL PROTECTED]> wrote:On Sat, 2006-07-29 at 09:26 -0500, shawn bright wrote: > Hey there,> i have an app with this line.> sys.stderr.write("GET DATA %s %d %d\n" (sound, ti

Re: [Tutor] question about type str

2006-07-29 Thread Python
On Sat, 2006-07-29 at 09:26 -0500, shawn bright wrote: > Hey there, > i have an app with this line. > sys.stderr.write("GET DATA %s %d %d\n" (sound, time_limit, digit_count)) sys.stderr.write("GET DATA %s %d %d\n" % (sound, time_limit, digit_count)) ^

[Tutor] question about type str

2006-07-29 Thread shawn bright
Hey there,i have an app with this line.sys.stderr.write("GET DATA %s %d %d\n" (sound, time_limit, digit_count))it is failing with the following error.Traceback (most recent call last):   File "/usr/share/asterisk/agi-bin/ast_agi_test.agi", line 88, in ?    entered_digits = getNumber(welcome, ti