~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 15:39:06 UTC
  • mfrom: (4393.2.2 bzr.ls-fix)
  • Revision ID: pqm@pqm.ubuntu.com-20090602153906-1q6bresxw669b34i
(Mattias Eriksson) Clear the terminal before outputing 'bzr ls'
        results.

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: