View Single Post
  #92 (permalink)  
Old July 12th, 2006, 02:41 AM
onlyonce onlyonce is offline
Hoping For A Cool Title
 
Join Date: Jan 2005
Posts: 77
just uncomment that line or add ".encode('iso-8859-15')" (use your terminal's charset). The background is, with encode() you are transforming text from a given charset into Python's own internal representation. When you're trying to output it, you have to transform it to a real charset again, using decode().
Reply With Quote