~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Martin Pool
  • Date: 2005-05-10 03:28:52 UTC
  • Revision ID: mbp@sourcefrog.net-20050510032852-7043c31bf32abe26
doc

Show diffs side-by-side

added added

removed removed

Lines of Context:
536
536
 
537
537
 
538
538
class cmd_ignored(Command):
539
 
    """List ignored files and the patterns that matched them."""
 
539
    """List ignored files and the patterns that matched them.
 
540
 
 
541
    See also: bzr ignore"""
540
542
    def run(self):
541
543
        tree = Branch('.').working_tree()
542
544
        for path, file_class, kind, file_id in tree.list_files():
552
554
 
553
555
    example:
554
556
        bzr lookup-revision 33
555
 
        """
 
557
    """
556
558
    hidden = True
557
559
    takes_args = ['revno']
558
560