~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/info.py

Merge integration.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
import time
20
20
 
21
21
from bzrlib.osutils import format_date
 
22
from bzrlib.workingtree import WorkingTree
22
23
 
23
24
 
24
25
def _countiter(it):
46
47
 
47
48
    count_version_dirs = 0
48
49
 
49
 
    basis = b.basis_tree()
50
 
    working = b.working_tree()
 
50
    working = b.bzrdir.open_workingtree()
 
51
    basis = working.basis_tree()
51
52
    work_inv = working.inventory
52
53
    delta = diff.compare_trees(basis, working, want_unchanged=True)
53
54