/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 breezy/bzrrepository.py

  • Committer: Jelmer Vernooij
  • Date: 2017-06-05 23:34:07 UTC
  • mto: (6653.3.3 bzrwt)
  • mto: This revision was merged to the branch mainline in revision 6667.
  • Revision ID: jelmer@jelmer.uk-20170605233407-ys037zw4q7wwwwpl
Fix imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
from __future__ import absolute_import
18
18
 
 
19
import itertools
 
20
 
19
21
from . import (
20
22
    bzrdir,
21
23
    errors,
22
24
    lockdir,
23
25
    lockable_files,
 
26
    revision as _mod_revision,
24
27
    )
25
28
from .decorators import needs_read_lock, needs_write_lock, only_raises
26
 
from .lock import _RelockDebugMixin
27
29
from .repository import (
28
30
    format_registry,
29
31
    Repository,
31
33
    )
32
34
 
33
35
 
34
 
class MetaDirRepository(Repository, _RelockDebugMixin):
 
36
class MetaDirRepository(Repository):
35
37
    """Repositories in the new meta-dir layout.
36
38
 
37
39
    :ivar _transport: Transport for access to repository control files,