diff options
author | Sylvain Th?nault <sylvain.thenault@logilab.fr> | 2013-06-19 15:16:50 +0200 |
---|---|---|
committer | Sylvain Th?nault <sylvain.thenault@logilab.fr> | 2013-06-19 15:16:50 +0200 |
commit | e9d1c500f67da73d3a067aebe3c6ce350ce710c5 (patch) | |
tree | 1b35735f26b5389816422ff392caff3bc28878ff /checkers/imports.py | |
parent | 9c137bc05c54e958f3932bdba7748e5fd6c2432f (diff) | |
download | pylint-e9d1c500f67da73d3a067aebe3c6ce350ce710c5.tar.gz |
move EmptyReport exception to pylint.utils and refactor imports so pylint.utils stop importing checkers/reporters
Diffstat (limited to 'checkers/imports.py')
-rw-r--r-- | checkers/imports.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/checkers/imports.py b/checkers/imports.py index 983db2c..1dd7787 100644 --- a/checkers/imports.py +++ b/checkers/imports.py @@ -1,4 +1,4 @@ -# Copyright (c) 2003-2012 LOGILAB S.A. (Paris, FRANCE). +# Copyright (c) 2003-2013 LOGILAB S.A. (Paris, FRANCE). # http://www.logilab.fr/ -- mailto:contact@logilab.fr # # This program is free software; you can redistribute it and/or modify it under @@ -23,7 +23,8 @@ import astroid from astroid import are_exclusive from pylint.interfaces import IAstroidChecker -from pylint.checkers import BaseChecker, EmptyReport +from pylint.utils import EmptyReport +from pylint.checkers import BaseChecker from pylint.checkers.utils import check_messages |