~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/benchmarks/__init__.py

Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
        
58
58
        No files change are included.
59
59
        """
60
 
        tree = BzrDir.create_standalone_workingtree(directory_name)
 
60
        tree = bzrdir.BzrDir.create_standalone_workingtree(directory_name)
61
61
        tree.lock_write()
62
62
        tree.branch.lock_write()
63
63
        tree.branch.repository.lock_write()
82
82
        commit in its revision-history is a merge another commit in the other
83
83
        tree.
84
84
        """
85
 
        tree = BzrDir.create_standalone_workingtree(directory_name)
 
85
        tree = bzrdir.BzrDir.create_standalone_workingtree(directory_name)
86
86
        tree.lock_write()
87
87
        try:
88
88
            tree2 = tree.bzrdir.sprout('tree2').open_workingtree()