/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 breezy/builtins.py

  • Committer: Jelmer Vernooij
  • Date: 2017-12-03 22:21:17 UTC
  • mfrom: (6825.5.2 all-paths)
  • Revision ID: jelmer@jelmer.uk-20171203222117-strqpyuxkux0oomt
Merge lp:~jelmer/brz/all-paths.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2443
2443
        basis = wt.basis_tree()
2444
2444
        self.add_cleanup(basis.lock_read().unlock)
2445
2445
        root_id = wt.get_root_id()
2446
 
        for file_id in wt.all_file_ids():
2447
 
            if basis.has_id(file_id):
2448
 
                continue
2449
 
            if root_id == file_id:
2450
 
                continue
2451
 
            path = wt.id2path(file_id)
 
2446
        for path in wt.all_versioned_paths():
 
2447
            if basis.has_filename(path):
 
2448
                continue
 
2449
            if path == u'':
 
2450
                continue
2452
2451
            if not os.access(osutils.pathjoin(wt.basedir, path), os.F_OK):
2453
2452
                continue
2454
2453
            if null: