diff options
author | Claudiu Popa <cpopa@cloudbasesolutions.com> | 2015-05-08 00:22:36 +0300 |
---|---|---|
committer | Claudiu Popa <cpopa@cloudbasesolutions.com> | 2015-05-08 00:22:36 +0300 |
commit | 1d4ff5ae6a411b94c7cb71f76d5e7c4726df5782 (patch) | |
tree | 761269a347eee86ead3515aa0d159e5d69bdeefd /pylint/testutils.py | |
parent | d957ae5764aff1eb6f7e021b0f75846bf7d2654a (diff) | |
download | pylint-git-1d4ff5ae6a411b94c7cb71f76d5e7c4726df5782.tar.gz |
Fix other pylint warnings over pylint's codebase.
Diffstat (limited to 'pylint/testutils.py')
-rw-r--r-- | pylint/testutils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/testutils.py b/pylint/testutils.py index 34ac47c0c..e4a0de19e 100644 --- a/pylint/testutils.py +++ b/pylint/testutils.py @@ -318,7 +318,7 @@ class LintTestUsingFile(LintTestUsingModule): importable += '.py' tocheck = [importable] if self.depends: - tocheck += [join(self.INPUT_DIR, name) for name, _file in self.depends] + tocheck += [join(self.INPUT_DIR, name) for name, _ in self.depends] self._test(tocheck) class LintTestUpdate(LintTestUsingModule): |