~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Martin Pool
  • Date: 2005-05-11 08:11:37 UTC
  • Revision ID: mbp@sourcefrog.net-20050511081137-b4a639321fbe37bb
- change 'file_list' to more explanatory 'specific_files'

Show diffs side-by-side

added added

removed removed

Lines of Context:
238
238
            b = Branch('.', lock_mode='r')
239
239
        import status
240
240
        status.show_status(b, show_unchanged=all, show_ids=show_ids,
241
 
                           file_list=file_list)
 
241
                           specific_files=file_list)
242
242
 
243
243
 
244
244
class cmd_cat_revision(Command):
494
494
    def run(self, revision=None, file_list=None):
495
495
        from bzrlib.diff import show_diff
496
496
    
497
 
        show_diff(Branch('.'), revision, file_list)
 
497
        show_diff(Branch('.'), revision, specific_files=file_list)
498
498
 
499
499
 
500
500