~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Parth Malwankar
  • Date: 2010-03-15 05:09:15 UTC
  • mto: (0.44.2 grep) (6531.3.1 merge-grep)
  • mto: This revision was merged to the branch mainline in revision 6555.
  • Revision ID: parth.malwankar@gmail.com-20100315050915-0h51ytoyy2fmfele
-I and -X are shortnames for --include and --exclude

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
           help='Number of levels to display - 0 for all, 1 for collapsed (1 is default).',
101
101
           argname='N',
102
102
           type=_parse_levels),
103
 
        ListOption('include', type=str, argname='glob',
 
103
        ListOption('include', type=str, argname='glob', short_name='I',
104
104
            help="Search only files whose base name matches GLOB."),
105
 
        ListOption('exclude', type=str, argname='glob',
 
105
        ListOption('exclude', type=str, argname='glob', short_name='X',
106
106
            help="Skip files whose base name matches GLOB."),
107
107
        ]
108
108