Skip to content

Commit

Permalink
Fix for kmmbvnr#378
Browse files Browse the repository at this point in the history
Pylint changed the arguments to the Run() method.
  • Loading branch information
matthew-hodgins committed Jul 2, 2020
1 parent 45f7b15 commit 39315bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_jenkins/tasks/run_pylint.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit 39315bb

Please sign in to comment.