Errin when executing a cgi script that sets a cookie in the browser

rurpy at yahoo.com rurpy at yahoo.com
Wed Jun 5 17:18:39 EDT 2013


On Wednesday, June 5, 2013 3:03:29 PM UTC-6, Chris Angelico wrote:
> On Thu, Jun 6, 2013 at 6:56 AM,  <rurpy at yahoo.com> wrote:
> > On Wednesday, June 5, 2013 1:54:45 PM UTC-6, Νικόλαος Κούρας wrote:
> >>...
> >> print( cookie, "Content-type: text/html; charset=utf-8\n", message ) 
> >>...
> >   print( cookie, "Content-type: text/html; charset=utf-8\n\n", message )
> > (ie, note the two \n's after the "utf-8" test.)
> 
> But that won't solve it either. The default separator for print is a
> space, so this will indent his Content-type line by one space.

Ah, quite right.  Something like 

  print( cookie, "\nContent-type: text/html; charset=utf-8\n\n", message )

then.



More information about the Python-list mailing list