~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/help.py

- fix up imports in remotebranch

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