mirror of
https://github.com/evennia/evennia.git
synced 2026-03-28 10:37:16 +01:00
text update
All evennia.web.website.tests pass.
This commit is contained in:
parent
c8e14c05cc
commit
b65a3ab1db
1 changed files with 5 additions and 3 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue