From 60586a2a4dc0f22aa7d62f44977ad4bfcf631e36 Mon Sep 17 00:00:00 2001 From: Tullio Facchinetti Date: Sat, 30 Jan 2021 00:42:13 +0100 Subject: [PATCH] Changed some text in the header. --- README.md | 3 +-- cli2md.py | 6 +++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 64ed9b9..9e727d8 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,6 @@ To build `README.md` run (`python3` is required for building): ``` make ``` -Category misc-to-classify does not have any app # Summary @@ -22,7 +21,7 @@ To date, **207** apps/tools covered, divided in **32** categories. Some links to [related resources](#resources). -I'm always interested to new tools, so if you have any suggestion please drop me an email at `toolleeo@gmail.com`. +If you have any suggestion or want your project listed here, drop me an email at `toolleeo@gmail.com`. ## Backup diff --git a/cli2md.py b/cli2md.py index aa9ceab..ec912a3 100644 --- a/cli2md.py +++ b/cli2md.py @@ -11,7 +11,7 @@ To date, **{n_apps}** apps/tools covered, divided in **{n_cats}** categories. Some links to [related resources](#resources). -I'm always interested to new tools, so if you have any suggestion please drop me an email at `toolleeo@gmail.com`. +If you have any suggestion or want your project listed here, drop me an email at `toolleeo@gmail.com`. """ resources_template = """ @@ -62,8 +62,8 @@ def count_apps(apps, categories): c = a['category'] if c in categories: categories[c]['count'] += 1 - else: - print('Category {} does not have any app'.format(c)) + #else: + # print('Category {} does not have any app'.format(c)) return categories