~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commit.py

(spiv) Fetch tagged revisions (not just tags) during branch,
 merge and pull. (Andrew Bennetts)

Show diffs side-by-side

added added

removed removed

Lines of Context:
446
446
            self._set_progress_stage("Uploading data to master branch")
447
447
            # 'commit' to the master first so a timeout here causes the
448
448
            # local branch to be out of date
449
 
            self.master_branch.import_last_revision_info(
450
 
                self.branch.repository, new_revno, self.rev_id)
 
449
            self.master_branch.import_last_revision_info_and_tags(
 
450
                self.branch, new_revno, self.rev_id)
451
451
 
452
452
        # and now do the commit locally.
453
453
        self.branch.set_last_revision_info(new_revno, self.rev_id)