Replaced | with , as separator of categories in the summary

test-summary-newlines-at-new-initial-letter
Tullio Facchinetti 9 months ago
parent 5bf6372b7b
commit a4145e7a9d

@ -60,7 +60,7 @@ def fmt_categories(cats):
st = []
for c in cats:
st.append("[{}](#{}) ({})".format(cats[c]['name'], c, cats[c]['count']))
return ' | '.join(st)
return ', '.join(st)
def count_apps(apps, categories):

Loading…
Cancel
Save