/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 breezy/plugins/grep/cmds.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 18:10:28 UTC
  • mto: This revision was merged to the branch mainline in revision 6623.
  • Revision ID: jelmer@jelmer.uk-20170521181028-zn04pdfw0od9hfj3
Rename brzlib => breezy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
from __future__ import absolute_import
20
20
 
21
 
from brzlib import errors
22
 
from brzlib.commands import Command, display_command
23
 
from brzlib.option import Option, ListOption
24
 
from brzlib.config import GlobalConfig
 
21
from breezy import errors
 
22
from breezy.commands import Command, display_command
 
23
from breezy.option import Option, ListOption
 
24
from breezy.config import GlobalConfig
25
25
 
26
 
# FIXME: _parse_levels should be shared with brzlib.builtins. this is a copy
 
26
# FIXME: _parse_levels should be shared with breezy.builtins. this is a copy
27
27
# to avoid the error
28
28
#   "IllegalUseOfScopeReplacer: ScopeReplacer object '_parse_levels' was used
29
29
#   incorrectly: Object already cleaned up, did you assign it to another
147
147
            path_list=None, revision=None, pattern=None, include=None,
148
148
            exclude=None, fixed_string=False, files_with_matches=False,
149
149
            files_without_match=False, color=None, diff=False):
150
 
        from brzlib import _termcolor
151
 
        from brzlib.plugins.grep import (
 
150
        from breezy import _termcolor
 
151
        from breezy.plugins.grep import (
152
152
            grep,
153
153
            )
154
154
        import re