source file: p10/commands/links.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 links(genericcommand.genericcommand): 7. """ Returns link information about the server """ 8. 9. def handle(self, origin, args): 10. self._state.requestLinks(origin, p10.base64.parseNumeric(args[0], self._state.maxClientNumerics), args[1])