~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

[merge] bzr.ab, several small bugfixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
430
430
            os.mkdir(to_location)
431
431
        if to_branch_type is None:
432
432
            to_branch_type = BzrBranch
433
 
        print "FIXME use a branch format here"
 
433
        # FIXME use a branch format here
434
434
        br_to = to_branch_type.initialize(to_location)
435
435
        mutter("copy branch from %s to %s", self, br_to)
436
436
        if basis_branch is not None:
1077
1077
        return branch_to
1078
1078
 
1079
1079
    def clone(self, to_location, revision=None, basis_branch=None, to_branch_type=None):
1080
 
        print "FIXME: clone via create and fetch is probably faster when versioned file comes in."
 
1080
        # FIXME: clone via create and fetch is probably faster when versioned
 
1081
        # file comes in.
1081
1082
        if to_branch_type is None:
1082
1083
            to_branch_type = BzrBranch
1083
1084