Some minor fixes and cleanups.

This commit is contained in:
Griatch 2011-04-19 15:31:13 +00:00
parent 0ea95631bf
commit 36bc29865b
2 changed files with 9 additions and 3 deletions

View file

@ -956,7 +956,7 @@ class CmdIMC2Chan(MuxCommand):
cols = [["Evennia channel"], ["IMC channel"]]
for conn in connections:
cols[0].append(conn.channel.key)
cols[1].append(" ".join(conn.external_config.split('|')))
cols[1].append(" ".join(conn.external_config.split('|')[:-3]))
ftable = utils.format_table(cols)
string = ""
for ir, row in enumerate(ftable):