Juan Manuel Ruiz Garcia wrote: > Module Script (Python), line 32, in marcaResultados > - <PythonScript at /jmruiz/1X2/marcaResultados> > - Line 32 > UnicodeError: ASCII encoding error: ordinal not in range(128) Go look at line 32 of your marcaResultados script. You've probabyl got a literal string that needs to be unicode, like this: u'a string' cheers, Chris