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