131
131
def _show_location_info(locs):
132
132
"""Show known locations for working, branch and repository."""
136
136
path_list.add_url(name, loc)
137
137
sys.stdout.writelines(path_list.get_lines())
139
139
def _gather_related_branches(branch):
141
141
locs.add_url('public branch', branch.get_public_branch())
142
142
locs.add_url('push branch', branch.get_push_location())
143
143
locs.add_url('parent branch', branch.get_parent())