/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/commands.py

  • Committer: Ian Clatworthy
  • Date: 2010-01-03 02:56:11 UTC
  • mto: (4944.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 4945.
  • Revision ID: ian.clatworthy@canonical.com-20100103025611-pttb5q6arsr4hnmo
User Reference as topics

Show diffs side-by-side

added added

removed removed

Lines of Context:
511
511
                        # so don't create a real link
512
512
                        see_also_links.append(item)
513
513
                    else:
514
 
                        # Use a reST link for this entry
515
 
                        see_also_links.append("`%s`_" % (item,))
 
514
                        # Use a Sphinx link for this entry
 
515
                        link_text = ":doc:`%s <%s-help>`" % (item, item)
 
516
                        see_also_links.append(link_text)
516
517
                see_also = see_also_links
517
518
            result += ':See also: '
518
519
            result += ', '.join(see_also) + '\n'