~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/workingtree.py

  • Committer: Ian Clatworthy
  • Date: 2010-03-30 20:13:52 UTC
  • mto: This revision was merged to the branch mainline in revision 5125.
  • Revision ID: ian.clatworthy@canonical.com-20100330201352-vw2gtujybyg3rvwc
whitespace fix in win32 installer

Show diffs side-by-side

added added

removed removed

Lines of Context:
1094
1094
        tree_transport = self.bzrdir.root_transport.clone(sub_path)
1095
1095
        if tree_transport.base != branch_transport.base:
1096
1096
            tree_bzrdir = format.initialize_on_transport(tree_transport)
1097
 
            branch.BranchReferenceFormat().initialize(tree_bzrdir, new_branch)
 
1097
            branch.BranchReferenceFormat().initialize(tree_bzrdir,
 
1098
                target_branch=new_branch)
1098
1099
        else:
1099
1100
            tree_bzrdir = branch_bzrdir
1100
1101
        wt = tree_bzrdir.create_workingtree(_mod_revision.NULL_REVISION)