diff --git a/templates/dups.html b/templates/dups.html
index 7bcd1a5..4e70837 100644
--- a/templates/dups.html
+++ b/templates/dups.html
@@ -82,7 +82,7 @@
{% set count.del = count.del + DD.ip_to_sp_dups_del[h]|length %}
{% endfor %}
{% if count.keep %}
- {% set auto.str = auto.str + "
- {% set auto.str = auto.str + "
Keeping {} files in {} paths, Deleting={} file in {} paths".format( count.keep_f, count.keep_d, count.keep_f, count.keep_d) %}
+ {% set auto.str = auto.str + "
Keeping {} files in {} paths, Deleting {} file in {} paths".format( count.keep_f, count.keep_d, count.keep_f, count.keep_d) %}
{% set all_count.k_files = all_count.k_files + count.keep_f %}
{% set all_count.d_files = all_count.d_files + count.keep_f %}
{% set all_count.mk_files = all_count.mk_files + count.m_files %}
@@ -209,8 +214,10 @@
- Automatically Keeping {{all_count.k_files}} files and deleting {{all_count.d_files}} files
- Leaving {{all_count.manual}} manual choices to make (to keep {{all_count.mk_files}} files and delete {{all_count.md_files}} files)
+ Automatically Keeping {{all_count.k_files}} files and Deleting {{all_count.d_files}} files
+ {% if all_count.manual %}
+ Leaving {{all_count.manual}} manual choices to make (to Keep {{all_count.mk_files}} files and Delete {{all_count.md_files}} files)
+ {% endif %}
{#
So by counting/double-check, uniq files kept = {{all_count.k_files+all_count.mk_files}}, overall dups = {{all_count.k_files+all_count.d_files+all_count.mk_files+all_count.md_files}}