~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/knit.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-03-12 03:39:10 UTC
  • mfrom: (4103.3.5 progress)
  • Revision ID: pqm@pqm.ubuntu.com-20090312033910-9umj7rwjo98zl7up
(mbp) small progress improvements

Show diffs side-by-side

added added

removed removed

Lines of Context:
1681
1681
                        key_records.append((key, details[0]))
1682
1682
                records_iter = enumerate(self._read_records_iter(key_records))
1683
1683
                for (key_idx, (key, data, sha_value)) in records_iter:
1684
 
                    pb.update('Walking content.', key_idx, total)
 
1684
                    pb.update('Walking content', key_idx, total)
1685
1685
                    compression_parent = build_details[key][1]
1686
1686
                    if compression_parent is None:
1687
1687
                        # fulltext
1717
1717
                source_keys.add(key)
1718
1718
                yield line, key
1719
1719
            keys.difference_update(source_keys)
1720
 
        pb.update('Walking content.', total, total)
 
1720
        pb.update('Walking content', total, total)
1721
1721
 
1722
1722
    def _make_line_delta(self, delta_seq, new_content):
1723
1723
        """Generate a line delta from delta_seq and new_content."""