Daniel Jirku wrote:
> My script looks like this...
>
> # -*- coding: utf-8 -*-
> ....
> badString = "blöm"
Make that
badString = u"blöm"
Mind the 'u', which makes it a unicode string. Your code above gives you a
UTF-8 encoded byte string.
Stefan