Put back wrongly removed __all__

This commit is contained in:
Laurent Bachelier 2014-09-10 14:05:08 +02:00
commit 4d63955cb5

View file

@ -25,6 +25,9 @@ from weboob.tools.backend import BaseBackend
from weboob.tools.log import getLogger
__all__ = ['Module', 'ModulesLoader', 'RepositoryModulesLoader', 'ModuleLoadError']
class ModuleLoadError(Exception):
def __init__(self, module_name, msg):
Exception.__init__(self, msg)