~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/help.py

  • Committer: Martin Pool
  • Date: 2005-09-07 23:14:30 UTC
  • mto: (1092.2.12) (974.1.76) (1185.8.2)
  • mto: This revision was merged to the branch mainline in revision 1390.
  • Revision ID: mbp@sourcefrog.net-20050907231430-097abbaee94ad75b
- docstring fix from Magnus Therning

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 ['$', '+']: