/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/info.py

merge bzr.dev r3564

Show diffs side-by-side

added added

removed removed

Lines of Context:
141
141
    locs.add_url('push branch', branch.get_push_location())
142
142
    locs.add_url('parent branch', branch.get_parent())
143
143
    locs.add_url('submit branch', branch.get_submit_branch())
 
144
    try:
 
145
        locs.add_url('stacked on', branch.get_stacked_on_url())
 
146
    except (errors.UnstackableBranchFormat, errors.UnstackableRepositoryFormat,
 
147
        errors.NotStacked):
 
148
        pass
144
149
    return locs
145
150
 
146
151