diff --git a/gratipay/models/team.py b/gratipay/models/team.py index b9d5a346b6..b737077b1c 100644 --- a/gratipay/models/team.py +++ b/gratipay/models/team.py @@ -75,8 +75,9 @@ def create_github_review_issue(self): """POST to GitHub, and return the URL of the new issue. """ api_url = "https://api.github.com/repos/{}/issues".format(self.review_repo) - data = json.dumps({ "title": "review {}".format(self.name) - , "body": "https://gratipay.com/{}/".format(self.slug) + data = json.dumps({ "title": self.name + , "body": "https://gratipay.com/{}/\n\n".format(self.slug) + + "(This application will remain open for at least a week.)" }) r = requests.post(api_url, auth=self.review_auth, data=data) if r.status_code == 201: