mirror of
https://github.com/jlu5/PyLink.git
synced 2025-02-17 14:01:03 +01:00
commands: sort channel list in 'showuser' output
This commit is contained in:
parent
0dd8b80a21
commit
a8303d0110
@ -106,12 +106,12 @@ def showuser(irc, source, args):
|
|||||||
f('\x02User modes\x02: %s' % utils.joinModes(userobj.modes))
|
f('\x02User modes\x02: %s' % utils.joinModes(userobj.modes))
|
||||||
f('\x02Protocol UID\x02: %s; \x02Real host\x02: %s; \x02IP\x02: %s' % \
|
f('\x02Protocol UID\x02: %s; \x02Real host\x02: %s; \x02IP\x02: %s' % \
|
||||||
(u, userobj.realhost, userobj.ip))
|
(u, userobj.realhost, userobj.ip))
|
||||||
f('\x02Channels\x02: %s' % (' '.join(userobj.channels).strip() or _none))
|
channels = sorted(userobj.channels)
|
||||||
|
f('\x02Channels\x02: %s' % (' '.join(channels) or _none))
|
||||||
f('\x02PyLink identification\x02: %s; \x02Services account\x02: %s; \x02Away status\x02: %s' % \
|
f('\x02PyLink identification\x02: %s; \x02Services account\x02: %s; \x02Away status\x02: %s' % \
|
||||||
((userobj.identified or _none), (userobj.services_account or _none), userobj.away or _none))
|
((userobj.identified or _none), (userobj.services_account or _none), userobj.away or _none))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@utils.add_cmd
|
@utils.add_cmd
|
||||||
def showchan(irc, source, args):
|
def showchan(irc, source, args):
|
||||||
"""<channel>
|
"""<channel>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user