1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#!/usr/bin/env python """\ Common entries, like strings, etc, for the changeset reading + writing code. """ header_str = 'Bazaar-NG (bzr) changeset v' version = (0, 0, 5) def get_header(): return [ header_str + '.'.join([str(v) for v in version]), 'This changeset can be applied with bzr apply-changeset', '' ] |