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

  • Committer: Jelmer Vernooij
  • Date: 2020-02-21 03:58:42 UTC
  • mfrom: (7490.3.4 work)
  • mto: This revision was merged to the branch mainline in revision 7495.
  • Revision ID: jelmer@jelmer.uk-20200221035842-j97r6b74q8cgxb21
merge lp:brz/3.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
819
819
 
820
820
    def pull(self, source, overwrite=False, stop_revision=None,
821
821
             change_reporter=None, possible_transports=None, local=False,
822
 
             show_base=False):
 
822
             show_base=False, tag_selector=None):
823
823
        with self.lock_write(), source.lock_read():
824
824
            old_revision_info = self.branch.last_revision_info()
825
825
            basis_tree = self.basis_tree()
826
826
            count = self.branch.pull(source, overwrite, stop_revision,
827
827
                                     possible_transports=possible_transports,
828
 
                                     local=local)
 
828
                                     local=local, tag_selector=tag_selector)
829
829
            new_revision_info = self.branch.last_revision_info()
830
830
            if new_revision_info != old_revision_info:
831
831
                repository = self.branch.repository