From 42523cfa867e43094655860635625c61e9764fec Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Mon, 27 Aug 2018 10:48:47 -0700 Subject: [PATCH] Fix a problem with the subject in the LP comment; Include test resources and fonts. --- MANIFEST.in | 2 ++ scripts/mp_update.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index be81efb23..7bfefe740 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -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 diff --git a/scripts/mp_update.py b/scripts/mp_update.py index 662bfd147..303913f9a 100644 --- a/scripts/mp_update.py +++ b/scripts/mp_update.py @@ -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():