From 0202cf2f7d6ebc39355a5bf7c94ca0e290b47a8e Mon Sep 17 00:00:00 2001 From: Christophe Benz Date: Wed, 11 Aug 2010 19:27:52 +0200 Subject: [PATCH] add weboob_lint.py script --- tools/weboob_lint.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 tools/weboob_lint.py diff --git a/tools/weboob_lint.py b/tools/weboob_lint.py new file mode 100755 index 00000000..0840a0d5 --- /dev/null +++ b/tools/weboob_lint.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python + +from weboob.core.backends import BackendsLoader + +loader = BackendsLoader() +loader.load_all() + +backends_without_icons = [name for name, backend in loader.loaded.iteritems() if backend.icon_path is None] +if backends_without_icons: + print 'Backends without icons: %s' % backends_without_icons