From 39315bb9bbbfb7035b070e6d81b59bae5ff0c4c7 Mon Sep 17 00:00:00 2001 From: Matthew Hodgins Date: Thu, 2 Jul 2020 10:22:36 -0500 Subject: [PATCH] Fix for #378 Pylint changed the arguments to the Run() method. --- django_jenkins/tasks/run_pylint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django_jenkins/tasks/run_pylint.py b/django_jenkins/tasks/run_pylint.py index 0a2e74c0..c2fa57c7 100644 --- a/django_jenkins/tasks/run_pylint.py +++ b/django_jenkins/tasks/run_pylint.py @@ -41,7 +41,7 @@ def run(self, apps_locations, **options): args += ['--errors-only'] args += apps_locations - lint.Run(args, reporter=ParseableTextReporter(output=output), exit=False) + lint.Run(args, reporter=ParseableTextReporter(output=output), do_exit=False) output.close()