~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

Magnus Thernings patch to remove status --revision, adjusted to update help.

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
    directory is shown.  Otherwise, only the status of the specified
63
63
    files or directories is reported.  If a directory is given, status
64
64
    is reported for everything inside that directory.
65
 
 
66
 
    If a revision is specified, the changes since that revision are shown.
67
65
    """
68
66
    takes_args = ['file*']
69
 
    takes_options = ['all', 'show-ids', 'revision']
 
67
    takes_options = ['all', 'show-ids']
70
68
    aliases = ['st', 'stat']
71
69
    
72
70
    def run(self, all=False, show_ids=False, file_list=None):