Whoosh (django haystack) error IndexError: string index out of range

Whoosh (django haystack) error IndexError: string index out of range

当我 运行 update_index 或 rebuild_index 在 django 上构建 django haystack 时,它会抛出此错误

  File "/home/ubuntu/webapps/djangoenv/local/lib/python2.7/site-packages/django/template/base.py", line 624, in resolve
    new_obj = func(obj, *arg_vals)
  File "/home/ubuntu/webapps/djangoenv/local/lib/python2.7/site-packages/markup_deprecated/templatetags/markup.py", line 30, in textile
    return mark_safe(force_text(textile.textile(force_bytes(value), encoding='utf-8', output='utf-8')))
  File "/home/ubuntu/webapps/djangoenv/local/lib/python2.7/site-packages/textile/core.py", line 1360, in textile
    return Textile(html_type=html_type).parse(text)
  File "/home/ubuntu/webapps/djangoenv/local/lib/python2.7/site-packages/textile/core.py", line 250, in parse
    text = self.block(text)
  File "/home/ubuntu/webapps/djangoenv/local/lib/python2.7/site-packages/textile/core.py", line 465, in block
    if ext or not line[0] in whitespace:
IndexError: string index out of range

在 python-textile 的某些版本中是 bug。升级到最新版本。

pip install --upgrade textile