~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/inventory.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-10-12 10:43:30 UTC
  • mfrom: (5487.1.1 trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20101012104330-tsonnndvloj18v4q
(vila) Add a --no-tree option for init and push (Matthew Gordon)

Show diffs side-by-side

added added

removed removed

Lines of Context:
836
836
                if ie.kind == 'directory':
837
837
                    descend(ie, child_path)
838
838
 
839
 
        descend(self.root, u'')
 
839
        if self.root is not None:
 
840
            descend(self.root, u'')
840
841
        return accum
841
842
 
842
843
    def directories(self):