/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Martin Pool
  • Date: 2007-07-11 03:46:34 UTC
  • mto: This revision was merged to the branch mainline in revision 2605.
  • Revision ID: mbp@sourcefrog.net-20070711034634-44v65lrdqsdh9k2s
Add help for --no-backup

Show diffs side-by-side

added added

removed removed

Lines of Context:
2864
2864
    """
2865
2865
 
2866
2866
    _see_also = ['cat', 'export']
2867
 
    takes_options = ['revision', 'no-backup']
 
2867
    takes_options = [
 
2868
            'revision',
 
2869
            Option('no-backup', "Do not save backups of reverted files."),
 
2870
            ]
2868
2871
    takes_args = ['file*']
2869
2872
 
2870
2873
    def run(self, revision=None, no_backup=False, file_list=None):