Skip to content

Commit

Permalink
Fix bad funding organization copy on gitcoinbot
Browse files Browse the repository at this point in the history
  • Loading branch information
mbeacom committed Oct 14, 2018
1 parent 72dbb79 commit 653bcdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/dashboard/notifications.py
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ def build_github_notification(bounty, event_name, profile_pairs=None):
learn_more_msg = f"* Learn more [on the Gitcoin Issue Details page]({absolute_url})"
crowdfund_amount = f"(plus a crowdfund of {bounty.additional_funding_summary_sentence})" if bounty.additional_funding_summary_sentence else ""
crowdfund_thx = ", ".join(f"@{tip.from_username}" for tip in bounty.tips.filter(is_for_bounty_fulfiller=True) if tip.from_username)
funding_org = f"__ as part of the {bounty.funding_organisation} fund__" if bounty.funding_organisation else ""
funding_org = f" as part of the {bounty.funding_organisation} fund" if bounty.funding_organisation else ""
if crowdfund_thx:
crowdfund_thx = f"Thanks to {crowdfund_thx} for their crowdfunded contributions to this bounty.\n\n"
if event_name == 'new_bounty':
Expand Down

0 comments on commit 653bcdf

Please sign in to comment.