[Tutor] PyApache Module questions

Daniel Yoo dyoo@hkn.eecs.berkeley.edu
Thu, 29 Mar 2001 03:48:18 -0800 (PST)


On Wed, 28 Mar 2001, Daniel Yoo wrote:

> Try:
> 
>     print "content-type: text/html"
> 
> or
> 
>     print "content-type: text/plain"

Err... clarification.  There needs to be a blank space between the
"content-type" line and whatever comes afterwards, so I need to correct
this as:

    print "content-type: text/html\n"

or

    print "content-type: text/plain\n"

Apologies for the mistake.