diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4c6cfc1fa9..a02b1106d0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,7 +4,7 @@
### Template
-- Fix links in `multiqc_config.yml` ([#2372](https://github.com/nf-core/tools/pull/2372))
+- Fix links in `multiqc_config.yml` ([#2372](https://github.com/nf-core/tools/pull/2372) and [#2412](https://github.com/nf-core/tools/pull/2412))
- Remove default false from nextflow_schema.json ([#2376](https://github.com/nf-core/tools/pull/2376))
- Add module MULTIQC to modules.config ([#2377](https://github.com/nf-core/tools/pull/2377))
- Add GitHub workflow for automated release announcements ([#2382](https://github.com/nf-core/tools/pull/2382))
diff --git a/nf_core/lint/multiqc_config.py b/nf_core/lint/multiqc_config.py
index 4877b41194..a1b831ae2d 100644
--- a/nf_core/lint/multiqc_config.py
+++ b/nf_core/lint/multiqc_config.py
@@ -76,7 +76,7 @@ def multiqc_config(self):
if "report_comment" not in mqc_yml:
raise AssertionError()
if mqc_yml["report_comment"].strip() != (
- f'This report has been generated by the nf-core/{self.pipeline_name} analysis pipeline. For information about how to '
f'interpret these results, please see the documentation.'
diff --git a/nf_core/pipeline-template/assets/multiqc_config.yml b/nf_core/pipeline-template/assets/multiqc_config.yml
index 9423ee53f7..9ab59067a1 100644
--- a/nf_core/pipeline-template/assets/multiqc_config.yml
+++ b/nf_core/pipeline-template/assets/multiqc_config.yml
@@ -1,10 +1,10 @@
report_comment: >
{% if 'dev' in version -%}
- This report has been generated by the {{ name }}
+ This report has been generated by the {{ name }}
analysis pipeline.{% if branded %} For information about how to interpret these results, please see the
documentation.{% endif %}
{%- else %}
- This report has been generated by the {{ name }}
+ This report has been generated by the {{ name }}
analysis pipeline.{% if branded %} For information about how to interpret these results, please see the
documentation.{% endif %}
{% endif %}