Skip to content

Commit

Permalink
Merge branch 'main' into FS-4216-eoi-display-subcriteria-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
RamuniN authored Mar 4, 2024
2 parents b8decf3 + 3c0c8d3 commit 608be7f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/blueprints/assessments/models/file_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ class ApplicationFileRepresentationArgs(NamedTuple):


def _generate_text_of_application(args: ApplicationFileRepresentationArgs):
text = generate_text_of_application(args.question_to_answer, args.fund.name)
fund_round_name = f"{args.fund.name} {args.round.title}"
text = generate_text_of_application(args.question_to_answer, fund_round_name)
return download_file(text, "text/plain", f"{args.short_id}_answers.txt")


Expand Down

0 comments on commit 608be7f

Please sign in to comment.