remove useless debug messages
This commit is contained in:
parent
52baab0c8e
commit
9cc771f445
1 changed files with 0 additions and 2 deletions
|
|
@ -117,9 +117,7 @@ class ModulesLoader(object):
|
||||||
except ImportError:
|
except ImportError:
|
||||||
return
|
return
|
||||||
for path in weboob.backends.__path__:
|
for path in weboob.backends.__path__:
|
||||||
self.logger.debug( 'Backend path: %s' % path )
|
|
||||||
for root, dirs, files in os.walk(path):
|
for root, dirs, files in os.walk(path):
|
||||||
self.logger.debug( 'Walking on %s' % root )
|
|
||||||
if os.path.dirname( root ) == path and '__init__.py' in files:
|
if os.path.dirname( root ) == path and '__init__.py' in files:
|
||||||
s = os.path.basename( root )
|
s = os.path.basename( root )
|
||||||
yield s
|
yield s
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue