Skip to content

Commit

Permalink
fix printing of remote branches
Browse files Browse the repository at this point in the history
  • Loading branch information
spderosso committed Sep 10, 2015
1 parent 5791e45 commit a26488a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gitless/cli/gl_branch.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def _do_list(repo, list_remote, v=False):
if list_remote:
for r in repo.remotes:
for b in (r.lookup_branch(n) for n in r.listall_branches()):
pprint.item(' {0}'.format(colored.yellow(b.branch_name)))
pprint.item(' {0}'.format(colored.yellow(str(b))))
if v:
pprint.item(' ➜ head is {0}'.format(_ci_str(b.head)))

Expand Down

0 comments on commit a26488a

Please sign in to comment.