/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/plugins/weave_fmt/bzrdir.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:
745
745
        return self._format.__class__()
746
746
 
747
747
    def clone(self, url, revision_id=None, force_new_repo=False,
748
 
              preserve_stacking=False):
 
748
              preserve_stacking=False, tag_selector=None):
749
749
        """See ControlDir.clone().
750
750
 
751
751
        force_new_repo has no effect, since this family of formats always
757
757
        result = self._format._initialize_for_clone(url)
758
758
        self.open_repository().clone(result, revision_id=revision_id)
759
759
        from_branch = self.open_branch()
760
 
        from_branch.clone(result, revision_id=revision_id)
 
760
        from_branch.clone(result, revision_id=revision_id, tag_selector=tag_selector)
761
761
        try:
762
762
            tree = self.open_workingtree()
763
763
        except errors.NotLocalUrl: