~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repofmt/knitpack_repo.py

  • Committer: Jelmer Vernooij
  • Date: 2011-04-05 16:26:48 UTC
  • mto: (5757.7.2 knitpackrepo-6)
  • mto: This revision was merged to the branch mainline in revision 5790.
  • Revision ID: jelmer@samba.org-20110405162648-qr4xw3jdvopmkxva
Don't make PackRepository derive from KnitRepository.

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
 
60
60
    def __init__(self, _format, a_bzrdir, control_files, _commit_builder_class,
61
61
        _serializer):
62
 
        KnitRepository.__init__(self, _format, a_bzrdir, control_files,
 
62
        PackRepository.__init__(self, _format, a_bzrdir, control_files,
63
63
            _commit_builder_class, _serializer)
64
64
        if self._format.supports_chks:
65
65
            raise AssertionError("chk not supported")