So it doesn't time out. Signed-off-by: Felipe Contreras <felipe.contre...@gmail.com> --- contrib/remote-helpers/git-remote-bzr | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/contrib/remote-helpers/git-remote-bzr b/contrib/remote-helpers/git-remote-bzr index 5f1b9c0..7517645 100755 --- a/contrib/remote-helpers/git-remote-bzr +++ b/contrib/remote-helpers/git-remote-bzr @@ -710,7 +710,7 @@ def do_export(parser): branch.generate_revision_history(revid, marks.get_tip(name)) if name in peers: - peer = peers[name] + peer = bzrlib.branch.Branch.open(peers[name]) try: peer.bzrdir.push_branch(branch, revision_id=revid) except bzrlib.errors.DivergedBranches: @@ -848,7 +848,7 @@ def get_repo(url, alias): branch = origin.open_branch() if not is_local: - peers[name] = branch + peers[name] = branch.base branches[name] = get_remote_branch(origin, branch, name) else: branches[name] = branch @@ -864,7 +864,7 @@ def get_repo(url, alias): for name, branch in find_branches(repo, wanted): if not is_local: - peers[name] = branch + peers[name] = branch.base branches[name] = get_remote_branch(origin, branch, name) else: branches[name] = branch -- 1.8.2.1.884.g3532a8d -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html