~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Aaron Bentley
  • Date: 2008-12-11 04:28:26 UTC
  • mto: This revision was merged to the branch mainline in revision 3893.
  • Revision ID: aaron@aaronbentley.com-20081211042826-0zgon0hquuau0rse
Remove references to ls-shelf

Show diffs side-by-side

added added

removed removed

Lines of Context:
4777
4777
 
4778
4778
        Option('list', help='list shelved changes.'),
4779
4779
    ]
4780
 
    _see_also = ['unshelve', 'ls-shelf']
 
4780
    _see_also = ['unshelve']
4781
4781
 
4782
4782
    def run(self, revision=None, all=False, file_list=None, message=None,
4783
4783
            writer=None, list=False):
4829
4829
            delete_only="Delete changes without applying them."
4830
4830
        )
4831
4831
    ]
4832
 
    _see_also = ['shelve', 'ls-shelf']
 
4832
    _see_also = ['shelve']
4833
4833
 
4834
4834
    def run(self, shelf_id=None, action='apply'):
4835
4835
        from bzrlib.shelf_ui import Unshelver