/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

  • Committer: Robert Collins
  • Date: 2008-04-07 21:52:08 UTC
  • mto: This revision was merged to the branch mainline in revision 3350.
  • Revision ID: robertc@robertcollins.net-20080407215208-rg0qk19a7sanekl1
Review feedback.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2042
2042
    """Repositories in a meta-dir, that work via versioned file objects."""
2043
2043
 
2044
2044
    def __init__(self, _format, a_bzrdir, control_files, _revision_store, control_store, text_store):
2045
 
        super(MetaDirVersionedFileRepository, self).__init__(_format,
2046
 
                                                a_bzrdir,
2047
 
                                                control_files,
2048
 
                                                _revision_store,
2049
 
                                                control_store,
2050
 
                                                text_store)
 
2045
        super(MetaDirVersionedFileRepository, self).__init__(_format, a_bzrdir,
 
2046
            control_files, _revision_store, control_store, text_store)
2051
2047
        _revision_store.get_scope = self.get_transaction
2052
2048
        control_store.get_scope = self.get_transaction
2053
2049
        text_store.get_scope = self.get_transaction