Fix a problem with the subject in the LP comment; Include test resources and fonts.

This commit is contained in:
Raoul Snyman 2018-08-27 10:48:47 -07:00
parent f0eb2f1513
commit 42523cfa86
2 changed files with 3 additions and 1 deletions

View File

@ -7,9 +7,11 @@ recursive-include openlp *.css
recursive-include openlp *.png
recursive-include openlp *.ps
recursive-include openlp *.json
recursive-include openlp *.ttf
recursive-include documentation *
recursive-include resources *
recursive-include scripts *
recursive-include tests/resources *
include copyright.txt
include LICENSE
include README.txt

View File

@ -41,7 +41,7 @@ def create_comment(merge_proposal, comment, subject):
"""
if not subject:
subject = 'Jenkins test update'
merge_proposal.createComment(subject, content=comment)
merge_proposal.createComment(subject=subject, content=comment)
def main():