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

  • Committer: Jelmer Vernooij
  • Date: 2018-11-25 20:44:56 UTC
  • mto: This revision was merged to the branch mainline in revision 7231.
  • Revision ID: jelmer@jelmer.uk-20181125204456-jm9k22rbl9n22ayj
Drop file_id from record_iter_changes return value.

Show diffs side-by-side

added added

removed removed

Lines of Context:
681
681
        if self.exclude:
682
682
            iter_changes = filter_excluded(iter_changes, self.exclude)
683
683
        iter_changes = self._filter_iter_changes(iter_changes)
684
 
        for file_id, path, fs_hash in self.builder.record_iter_changes(
 
684
        for path, fs_hash in self.builder.record_iter_changes(
685
685
                self.work_tree, self.basis_revid, iter_changes):
686
686
            self.work_tree._observed_sha1(path, fs_hash)
687
687