source file: p10/commands/names.py
file stats: 7 lines, 7 executed: 100.0% covered
1. #!/usr/bin/env python
2.
3. import p10.base64
4. import genericcommand
5.
6. class names(genericcommand.genericcommand):
7. """ Returns users on a channel """
8.
9. def handle(self, origin, args):
10. self._state.requestChannelUsers(origin, p10.base64.parseNumeric(args[1], self._state.maxClientNumerics), args[0].split(","))