add weboob_lint.py script
This commit is contained in:
parent
13f9fc07b2
commit
0202cf2f7d
1 changed files with 10 additions and 0 deletions
10
tools/weboob_lint.py
Executable file
10
tools/weboob_lint.py
Executable file
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue