Amaury Forgeot d'Arc <amaur...@gmail.com> added the comment: Ezio is correct: in general a string cannot be added to a unicode. Except for the simplest case (only 7bit ascii characters), you have to decode the string:
u"" + datetime.datetime( 2009, 3, 1 ).strftime("%B").decode('utf-8') ---------- nosy: +amaury.forgeotdarc resolution: -> invalid status: open -> closed _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue5398> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com