MrDoc
MrDoc copied to clipboard
语法修正
whoosh_cn_backend.py lines:742
if value is None or len(value) is 0:
#修改为
if not value or not len(value):