~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/help.py

  • Committer: Aaron Bentley
  • Date: 2005-09-12 13:48:32 UTC
  • mfrom: (1185.3.4)
  • mto: (1185.1.16)
  • mto: This revision was merged to the branch mainline in revision 1390.
  • Revision ID: abentley@panoramicfeedback.com-20050912134832-c23db11dc63170b6
Merged from mpool

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
 
71
71
    Only describes arguments, not options.
72
72
    """
73
 
    s = cmd_object.name() + ' '
 
73
    s = 'bzr ' + cmd_object.name() + ' '
74
74
    for aname in cmd_object.takes_args:
75
75
        aname = aname.upper()
76
76
        if aname[-1] in ['$', '+']: