diff options
author | Glenn Matthews <glenn@e-dad.net> | 2016-07-18 15:56:04 -0400 |
---|---|---|
committer | Glenn Matthews <glenn@e-dad.net> | 2016-07-19 13:56:06 -0400 |
commit | 0495355af9b2958e2ecd23311a697a8a7a7cc887 (patch) | |
tree | 7918c02da8ba7547d14cb1a41f54b3864cc89b18 /pylint/checkers/raw_metrics.py | |
parent | 47577a4a396a148b92e656110c2bdb18632d44a9 (diff) | |
download | pylint-git-0495355af9b2958e2ecd23311a697a8a7a7cc887.tar.gz |
Move EmptyReport and UnknownMessage to pylint.exceptions
Diffstat (limited to 'pylint/checkers/raw_metrics.py')
-rw-r--r-- | pylint/checkers/raw_metrics.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/checkers/raw_metrics.py b/pylint/checkers/raw_metrics.py index 864ec1f91..a3aed5171 100644 --- a/pylint/checkers/raw_metrics.py +++ b/pylint/checkers/raw_metrics.py @@ -12,7 +12,7 @@ Raw metrics checker import tokenize from pylint.interfaces import ITokenChecker -from pylint.utils import EmptyReport +from pylint.exceptions import EmptyReport from pylint.checkers import BaseTokenChecker from pylint.reporters import diff_string from pylint.reporters.ureports.nodes import Table |