diff --git a/tools/weboob_lint.py b/tools/weboob_lint.py index 0840a0d5..5f913a9a 100755 --- a/tools/weboob_lint.py +++ b/tools/weboob_lint.py @@ -1,8 +1,8 @@ #!/usr/bin/env python -from weboob.core.backends import BackendsLoader +from weboob.core.modules import ModulesLoader -loader = BackendsLoader() +loader = ModulesLoader() loader.load_all() backends_without_icons = [name for name, backend in loader.loaded.iteritems() if backend.icon_path is None]