/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/testament.py

  • Committer: John Arbash Meinel
  • Date: 2006-08-08 23:48:44 UTC
  • mfrom: (1910 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1912.
  • Revision ID: john@arbash-meinel.com-20060808234844-602f87fbb7bbd2fe
[merge] bzr.dev 1910

Show diffs side-by-side

added added

removed removed

Lines of Context:
132
132
        for l in self.message.splitlines():
133
133
            a('  %s\n' % l)
134
134
        a('inventory:\n')
135
 
        for path, ie in self.inventory.iter_entries():
 
135
        entries = self.inventory.iter_entries()
 
136
        entries.next()
 
137
        for path, ie in entries:
136
138
            a(self._entry_to_line(path, ie))
137
139
        r.extend(self._revprops_to_lines())
138
140
        if __debug__: