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