Obs:Migrate. Made Comm system more generic, including the ability to connect arbitrary protocols to channels. Re-worked the IRC connectivity system - you can now again communicate between IRC and in-game evennia channels.

This commit is contained in:
Griatch 2011-04-10 12:39:07 +00:00
parent c81d238b0c
commit 52785e8f3e
20 changed files with 960 additions and 258 deletions

View file

@ -19,7 +19,7 @@ def format_help_entry(title, help_text, aliases=None,
"""
This visually formats the help entry.
"""
string = "-"*70 + "\n"
string = "-"*78 + "\n"
if title:
string += "Help topic for {w%s{n" % (title.capitalize())
if aliases:
@ -30,7 +30,7 @@ def format_help_entry(title, help_text, aliases=None,
string += "\nSuggested:\n"
string += fill(", ".join(suggested))
string.strip()
string += "\n" + "-"*70
string += "\n" + "-"*78
return string
def format_help_list(hdict_cmds, hdict_db):