~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/help.py

  • Committer: aaron.bentley at utoronto
  • Date: 2005-09-04 02:59:56 UTC
  • mfrom: (1172)
  • mto: (1185.3.4)
  • mto: This revision was merged to the branch mainline in revision 1178.
  • Revision ID: aaron.bentley@utoronto.ca-20050904025956-776ba4f07de97700
Merged mpool's latest changes (~0.0.7)

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
  bzr diff      show detailed diffs
42
42
 
43
43
  bzr merge     pull in changes from another branch
44
 
  bzr commit    save some or all changes
 
44
  bzr commit    
45
45
 
46
46
  bzr log       show history of changes
47
47
  bzr check     validate storage
70
70
 
71
71
    Only describes arguments, not options.
72
72
    """
73
 
    s = 'bzr ' + cmd_object.name() + ' '
 
73
    s = cmd_object.name() + ' '
74
74
    for aname in cmd_object.takes_args:
75
75
        aname = aname.upper()
76
76
        if aname[-1] in ['$', '+']: