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 Run()
  • Loading branch information
matthew-hodgins committed Jul 2, 2020
1 parent a903849 commit ac9eb7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ geckodriver.log



.DS_Store
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 ac9eb7c

Please sign in to comment.