File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -77,14 +77,18 @@ See "get_license_file_key" in `attrib.py` for more information
7777 {% if about_object.license_file.value %}
7878 {% for lic_file_name in about_object.license_file.value %}
7979 {% if not license_file_key_and_license_key[license_file_name_and_license_file_key[lic_file_name]] in common_licenses %}
80- <pre>{{ about_object.license_file.value[lic_file_name] | e}}</pre>
80+ {% if about_object.license_file.value[lic_file_name] %}
81+ <pre>{{ about_object.license_file.value[lic_file_name] | e}}</pre>
82+ {% endif %}
8183 {% endif %}
8284 {% endfor %}
8385 {% endif %}
8486 {% else %}
8587 {% if about_object.license_file.value %}
8688 {% for lic_file_name in about_object.license_file.value %}
87- <pre>{{ about_object.license_file.value[lic_file_name] | e}}</pre>
89+ {% if about_object.license_file.value[lic_file_name] %}
90+ <pre>{{ about_object.license_file.value[lic_file_name] | e}}</pre>
91+ {% endif %}
8892 {% endfor %}
8993 {% endif %}
9094 {% endif %}
You can’t perform that action at this time.
0 commit comments