From 0dc44850767acfc512bd6ee6645add7cf10247d9 Mon Sep 17 00:00:00 2001 From: Romain Bignon Date: Fri, 17 Sep 2010 19:09:46 -0400 Subject: [PATCH] fix script --- tools/weboob_lint.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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]