31
32
for i in range(total_lines):
32
33
text += line_prefix + str(i+1) + "\n"
36
38
self.run_bzr(['add', path])
37
39
self.run_bzr(['ci', '-m', '"' + path + '"'])
39
41
def _update_file(self, path, text, checkin=True):
40
42
"""append text to file 'path' and check it in"""
43
47
self.run_bzr(['ci', path, '-m', '"' + path + '"'])