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

  • Committer: Martin Pool
  • Date: 2005-07-29 13:18:36 UTC
  • Revision ID: mbp@sourcefrog.net-20050729131836-17f9978368f9a5b0
- more branch log test cases

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
"""Tree classes, representing directory at point in time.
18
18
"""
19
19
 
 
20
from osutils import pumpfile, appendpath, fingerprint_file
20
21
import os
21
22
 
22
 
import bzrlib
23
23
from bzrlib.trace import mutter, note
24
24
from bzrlib.errors import BzrError
25
 
from bzrlib.inventory import Inventory
26
 
from bzrlib.osutils import pumpfile, appendpath, fingerprint_file
27
25
 
 
26
import bzrlib
28
27
 
29
28
exporters = {}
30
29
 
147
146
 
148
147
 
149
148
class EmptyTree(Tree):
150
 
    def __init__(self):
151
 
        self._inventory = Inventory()
 
149
    def __init__(self, root_id):
 
150
        from bzrlib.inventory import Inventory
 
151
        self._inventory = Inventory(root_id)
152
152
 
153
153
    def has_filename(self, filename):
154
154
        return False