mirror of
https://github.com/evennia/evennia.git
synced 2026-04-04 15:07:16 +02:00
text update
All evennia.web.website.tests pass.
This commit is contained in:
parent
787ef8c068
commit
a661e4801b
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