Lines Matching refs:line
87 for line in lines[4:]:
88 cmd_list = line.strip().split(" ")
92 assert len(cmd_list) == 2, "command format error: {}".format(line)
98 assert len(cmd_list) >= 5, "command format error: {}".format(line)
110 assert len(cmd_list) >= 8, "command format error: {}".format(line)
120 assert len(cmd_list) == 3, "command format error: {}".format(line)
125 assert len(cmd_list) == 2, "command format error: {}".format(line)
129 logging.error("failed to parse command in: " + line)
176 for line in self.package.read(metadata_path).strip().splitlines():
177 index = line.find("=")
178 metadata_info[line[0 : index].strip()] = line[index + 1:].strip()