~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/revisiontree.py

  • Committer: Aaron Bentley
  • Date: 2006-09-21 23:23:03 UTC
  • mto: This revision was merged to the branch mainline in revision 2048.
  • Revision ID: aaron.bentley@utoronto.ca-20060921232303-456dc6bfcc66f870
Got 0.9 bundles working, with root included by changes_from

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
    def list_files(self, include_root=False):
101
101
        # The only files returned by this are those from the version
102
102
        entries = self.inventory.iter_entries()
103
 
        import pdb; pdb.set_trace()
104
103
        if not include_root:
105
104
            # skip the root for compatability with the current apis.
106
105
            entries.next()