~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/smart/repository.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-06-02 02:34:51 UTC
  • mfrom: (4392.2.3 quick-fix)
  • Revision ID: pqm@pqm.ubuntu.com-20090602023451-adrz7xhxr6qimtni
(jam) Fix some regressions w/ fetch+ghosts+stacking introduced by 4392

Show diffs side-by-side

added added

removed removed

Lines of Context:
436
436
        for record in substream:
437
437
            if record.storage_kind in ('chunked', 'fulltext'):
438
438
                serialised = record_to_fulltext_bytes(record)
 
439
            elif record.storage_kind == 'absent':
 
440
                raise ValueError("Absent factory for %s" % (record.key,))
439
441
            else:
440
442
                serialised = record.get_bytes_as(record.storage_kind)
441
443
            if serialised: