/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 dir.py

Implement Tree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
    )
28
28
 
29
29
lazy_import(globals(), """
30
 
from bzrlib.lockable_files import TransportLock
 
30
from bzrlib.lockable_files import (
 
31
    _LockWarner,
 
32
    TransportLock,
 
33
    )
31
34
from bzrlib.plugins.git import (
32
35
    errors,
33
36
    branch,
66
69
        self._lock = lock
67
70
        self._transaction = None
68
71
        self._lock_mode = None
69
 
        self._lock_count = 0
70
72
        self._transport = transport
 
73
        self._lock_warner = _LockWarner(repr(self))
71
74
 
72
75
 
73
76
class GitDir(bzrdir.BzrDir):