zmister2016 / MrDoc

mrdoc,online document system developed based on python. It is suitable for individuals and small teams to manage documents, wiki, knowledge and notes. 觅思文档,适合于个人和中小型团队的在线文档、知识库系统。
https://mrdoc.pro/
GNU General Public License v3.0
2.87k stars 535 forks source link

语法修正 #151

Open chaobingya opened 1 year ago

chaobingya commented 1 year ago

whoosh_cn_backend.py lines:742

if value is None or len(value) is 0:
#修改为
if not value or not len(value):