~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tree.py

  • Committer: mbp at sourcefrog
  • Date: 2005-03-29 05:19:01 UTC
  • Revision ID: mbp@sourcefrog.net-20050329051901-3fee7351353c9796
Doc

Show diffs side-by-side

added added

removed removed

Lines of Context:
199
199
            ls = os.listdir(dp)
200
200
            ls.sort()
201
201
            for f in ls:
 
202
                ## TODO: If we find a subdirectory with its own .bzr
 
203
                ## directory, then that is a separate tree and we
 
204
                ## should exclude it.
202
205
                if bzrlib.BZRDIR == f:
203
206
                    continue
204
207