~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: 2008-09-30 00:26:05 UTC
  • mfrom: (3749.1.1 270738-stacking)
  • Revision ID: pqm@pqm.ubuntu.com-20080930002605-dfe533l96sx35va8
(mbp) Fix error construction in KnitVersionedFiles

Show diffs side-by-side

added added

removed removed

Lines of Context:
1433
1433
                yield line, key
1434
1434
            keys.difference_update(source_keys)
1435
1435
        if keys:
1436
 
            raise RevisionNotPresent(keys, self.filename)
 
1436
            # XXX: strictly the second parameter is meant to be the file id
 
1437
            # but it's not easily accessible here.
 
1438
            raise RevisionNotPresent(keys, repr(self))
1437
1439
        pb.update('Walking content.', total, total)
1438
1440
 
1439
1441
    def _make_line_delta(self, delta_seq, new_content):