You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 14, 2023. It is now read-only.
default.py 里面定义
just_update = _ _("JUST_UPDATE", True)
双下划线本身定义了一个转小写, _ _ = lambda x, y: _(x, str(y)).lower() == str(y).lower()
但是这样设置的话just_update = __("JUST_UPDATE", False),False转小写false,false 再转bool值,还是为True了。no_porn_img、send_for_test、debug和limit_log可能都会有这个问题。
直接修改:
just_update = _("JUST_UPDATE", True)
The text was updated successfully, but these errors were encountered: