~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/fetch.py

Change fetch status message to "copying revision" so it makes sense when pushing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
176
176
                continue
177
177
            if self.to_branch.has_revision(rev_id):
178
178
                continue
179
 
            self.pb.update('fetch revision', i, self.count_total)
 
179
            self.pb.update('copy revision', i, self.count_total)
180
180
            self._copy_one_revision(rev_id)
181
181
            self.count_copied += 1
182
182