Wordseer / wordseer

The WordSeer text analysis tool, written in Flask.
http://wordseer.berkeley.edu/
42 stars 16 forks source link

Unicode error #50

Closed abendebury closed 10 years ago

abendebury commented 10 years ago

sequenceprocessor.py line 83

Solution:

stop_words should be unicode, probably

keien commented 10 years ago
lib/wordseerbackend/wordseerbackend/sequence/sequenceprocessor.py:83: UnicodeWarning: Unicode equal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
  if word.word.lower() not in self.stop_words:
abendebury commented 10 years ago

Does this error still happen?