Fix bad parsing of JOIN command

This commit is contained in:
Némunaire 2012-07-20 17:11:21 +02:00
commit f4d3c6a500
3 changed files with 23 additions and 20 deletions

View file

@ -312,7 +312,7 @@ def liste(cmds, servers):
elif l == "chan" or l == "channel" or l == "channels":
if selectedServer is not None:
for chn in selectedServer.channels:
print (" - %s ;" % chn)
print (" - %s: %s ;" % (chn, selectedServer.channels[chn].people.keys()))
else:
print (" Please SELECT a server before ask for channels list.")
else: