~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

  • Committer: Martin Pool
  • Date: 2009-03-10 06:24:34 UTC
  • mto: This revision was merged to the branch mainline in revision 4123.
  • Revision ID: mbp@sourcefrog.net-20090310062434-dh86l8fm5o92eq2d
Remove trailing punctuation from progress messages

Show diffs side-by-side

added added

removed removed

Lines of Context:
1580
1580
        batch_size = 10 # should be ~150MB on a 55K path tree
1581
1581
        batch_count = len(revision_order) / batch_size + 1
1582
1582
        processed_texts = 0
1583
 
        pb.update("Calculating text parents.", processed_texts, text_count)
 
1583
        pb.update("Calculating text parents", processed_texts, text_count)
1584
1584
        for offset in xrange(batch_count):
1585
1585
            to_query = revision_order[offset * batch_size:(offset + 1) *
1586
1586
                batch_size]
1590
1590
                revision_id = rev_tree.get_revision_id()
1591
1591
                parent_ids = ancestors[revision_id]
1592
1592
                for text_key in revision_keys[revision_id]:
1593
 
                    pb.update("Calculating text parents.", processed_texts)
 
1593
                    pb.update("Calculating text parents", processed_texts)
1594
1594
                    processed_texts += 1
1595
1595
                    candidate_parents = []
1596
1596
                    for parent_id in parent_ids: