From 5f640de76e57272d7b7707e710bbee19a8eda79a Mon Sep 17 00:00:00 2001 From: Martin Basti Date: May 29 2017 16:37:41 +0000 Subject: Pylint: fix ipa_forbidden_import checker Pylint 1.7 changed internals, so we have update our custom checker https://pagure.io/freeipa/issue/6874 Reviewed-By: Stanislav Laznicka --- diff --git a/pylint_plugins.py b/pylint_plugins.py index 472328c..b17e7db 100644 --- a/pylint_plugins.py +++ b/pylint_plugins.py @@ -311,7 +311,7 @@ class IPAChecker(BaseChecker): self._forbidden_imports_stack = [] def _get_forbidden_import_rule(self, node): - path = node.source_file + path = node.path if path: path = os.path.abspath(path) while path.startswith(self._dir):