summaryrefslogtreecommitdiff
path: root/contrib/remote-helpers/git-remote-bzr
diff options
context:
space:
mode:
authorFelipe Contreras <felipe.contreras@gmail.com>2013-05-25 02:24:24 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-05-28 14:43:18 (GMT)
commita8ffc3ade273c5d6b2383450f1b4970c2da89d7d (patch)
treec69fb3e5e29a328092a63f4a3beef1b43324e2f6 /contrib/remote-helpers/git-remote-bzr
parent0454c399c9ce75bbdf7d35223845cfc98f51d5d9 (diff)
downloadgit-a8ffc3ade273c5d6b2383450f1b4970c2da89d7d.zip
git-a8ffc3ade273c5d6b2383450f1b4970c2da89d7d.tar.gz
git-a8ffc3ade273c5d6b2383450f1b4970c2da89d7d.tar.bz2
remote-bzr: trivial cleanups
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/remote-helpers/git-remote-bzr')
-rwxr-xr-xcontrib/remote-helpers/git-remote-bzr14
1 files changed, 7 insertions, 7 deletions
diff --git a/contrib/remote-helpers/git-remote-bzr b/contrib/remote-helpers/git-remote-bzr
index 80ed59f..34025c3 100755
--- a/contrib/remote-helpers/git-remote-bzr
+++ b/contrib/remote-helpers/git-remote-bzr
@@ -815,7 +815,7 @@ def find_branches(repo, wanted):
except bzrlib.errors.NotBranchError:
continue
else:
- yield name, branch
+ yield name, branch.base
def get_repo(url, alias):
global dirname, peer, branches
@@ -857,12 +857,12 @@ def get_repo(url, alias):
# branch
name = 'master'
- remote_branch = origin.open_branch()
+ branch = origin.open_branch().base
if not is_local:
- peers[name] = remote_branch.base
+ peers[name] = branch
- branches[name] = remote_branch.base
+ branches[name] = branch
return origin
else:
@@ -872,12 +872,12 @@ def get_repo(url, alias):
# stupid python
wanted = [e for e in wanted if e]
- for name, remote_branch in find_branches(repo, wanted):
+ for name, branch in find_branches(repo, wanted):
if not is_local:
- peers[name] = remote_branch.base
+ peers[name] = branch
- branches[name] = remote_branch.base
+ branches[name] = branch
return origin