92
92
def parse_line(self, line):
93
93
m = self.usage_exp.match(line)
97
99
self.command_usage.append((self.command,self.usage,self.descr))
98
100
self.all_commands.append(self.command)
100
102
self.command = m.groups()[0]
105
107
m = self.descr_exp.match(line)