~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/benchmarks/__init__.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-07-12 03:22:41 UTC
  • mfrom: (1711.2.86 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060712032241-2352b3ef35093aa1
(jam) minor cleanups, updates to NEWS for bug fixes.

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()