~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/plugins/grep/features.py

  • Committer: Jelmer Vernooij
  • Date: 2012-06-29 08:24:02 UTC
  • mto: This revision was merged to the branch mainline in revision 6555.
  • Revision ID: jelmer@samba.org-20120629082402-w7519tbko418j5e1
Drop unnecessary compatibility code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
from __future__ import absolute_import
19
19
 
20
 
try:
21
 
    from bzrlib.tests.features import Feature
22
 
except ImportError: # bzr < 2.5
23
 
    from bzrlib.tests import Feature
 
20
from bzrlib.tests.features import Feature
24
21
from bzrlib.plugins.grep.termcolor import allow_color
25
22
 
26
23
class _ColorFeature(Feature):