Show
Ignore:
Timestamp:
03/21/08 17:38:57 (8 months ago)
Author:
Lafaye Philippe (RAGE2000) <lafaye@…>
Message:

The character table use now unicode

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • xap/trunk/tokenizer/filters.py

    r219 r222  
    194194        for word in words: 
    195195            splited = word.split() 
    196             result[splited[0]] = splited[1] 
     196            result[splited[0].decode('utf8')] = splited[1] 
    197197        return result 
    198198