text update

All evennia.web.website.tests pass.
This commit is contained in:
davewiththenicehat 2021-06-15 17:11:51 -04:00
parent c8e14c05cc
commit b65a3ab1db

View file

@ -109,9 +109,11 @@ def collect_topics(account):
# skip the command if it's help entry already exists in the topic list
entry_exists = False
for verify_cmd in cmd_help_topics:
if verify_cmd.key and cmd.key and \
verify_cmd.help_category == cmd.help_category and \
verify_cmd.__doc__ == cmd.__doc__:
if (
verify_cmd.key and cmd.key and
verify_cmd.help_category == cmd.help_category and
verify_cmd.__doc__ == cmd.__doc__
):
entry_exists = True
break
if entry_exists: