Zbigniew Szalbot wrote:
>
>What something like that work or do I need to learn python? :)
>
>            output.append('<META http-equiv="Content-Type" '
>                           'content="text/html; charset=%s">' % charset)
>
>            output.append('<META http-equiv="Content-Type" '
>                           'content="text/html; charset=%s">' % charset 
>\n '<link rel="stylesheet" href="domain.tld/stylesheet.css" 
>type="text/css">')


Learning Python is always worthwhile :)

The above replacement won't work for a few technical reasons. Do it
this way:

            output.append('<META http-equiv="Content-Type" '
                          'content="text/html; charset=%s">' % charset)
            output.append('<link rel="stylesheet" '
                   'href="domain.tld/stylesheet.css" type="text/css">')

-- 
Mark Sapiro <[EMAIL PROTECTED]>        The highway is for gamblers,
San Francisco Bay Area, California    better use your sense - B. Dylan

------------------------------------------------------
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: http://wiki.list.org/x/QIA9

Reply via email to