On Thu, Jun 6, 2013 at 7:18 AM,  <ru...@yahoo.com> wrote:
> On Wednesday, June 5, 2013 3:03:29 PM UTC-6, Chris Angelico wrote:
>> On Thu, Jun 6, 2013 at 6:56 AM,  <ru...@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.

Or change the sep, or concatenate with + instead of using , between
them. Or put them on separate lines. Anything like that would work.
And it's really easy to try things out interactively to see what
they'll do...

ChrisA
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to