/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/inventory.py

  • Committer: Robert Collins
  • Date: 2006-06-11 11:28:35 UTC
  • mto: (1767.2.2 integration)
  • mto: This revision was merged to the branch mainline in revision 1769.
  • Revision ID: robertc@robertcollins.net-20060611112835-f589ab9ed2e52071
Tweak InventoryEntry.sorted_children to be simpler.

Show diffs side-by-side

added added

removed removed

Lines of Context:
317
317
        raise BzrError("don't know how to export {%s} of kind %r" % (self.file_id, self.kind))
318
318
 
319
319
    def sorted_children(self):
320
 
        l = self.children.items()
321
 
        l.sort()
322
 
        return l
 
320
        return sorted(self.children.items())
323
321
 
324
322
    @staticmethod
325
323
    def versionable_kind(kind):