/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/benchmarks/__init__.py

  • Committer: John Arbash Meinel
  • Date: 2006-07-12 14:24:06 UTC
  • mfrom: (1858 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1860.
  • Revision ID: john@arbash-meinel.com-20060712142406-d61dbe10e698517d
[merge] bzr.dev 1858

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