(self, line)
| 87 | |
| 88 | # show message for unknown commands |
| 89 | def default(self, line): |
| 90 | if line and line[0] != "#": # interpret as comment |
| 91 | output().chitchat("Unknown command: '" + line + "'") |
| 92 | |
| 93 | # suppress help message for undocumented commands |
| 94 | def print_topics(self, header, cmds, cmdlen, maxcol): |