From 5df1d89c8e09babefe4fdae1c91242d35e5690b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Fri, 24 Oct 2014 22:24:11 +0200 Subject: [PATCH] Make lint report total app counts as well --- fdroidserver/lint.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/fdroidserver/lint.py b/fdroidserver/lint.py index 3f95117a..bfacc2da 100644 --- a/fdroidserver/lint.py +++ b/fdroidserver/lint.py @@ -171,6 +171,8 @@ def main(): if app['Disabled']: continue + count['app_total'] += 1 + for build in app['builds']: if build['commit'] and not build['disable']: lastcommit = build['commit'] @@ -251,7 +253,8 @@ def main(): if not curid: print - logging.info("Found a total of %i warnings in %i apps." % (count['warn'], count['app'])) + logging.info("Found a total of %i warnings in %i apps out of %i total." % ( + count['warn'], count['app'], count['app_total'])) if __name__ == "__main__": main()