add __all__ variable to many modules

This commit is contained in:
Christophe Benz 2010-04-16 18:02:03 +02:00
commit cebcead318
10 changed files with 38 additions and 2 deletions

View file

@ -24,7 +24,11 @@ from logging import warning
from weboob.modules import ModulesLoader, BackendsConfig
from weboob.scheduler import Scheduler
class Weboob:
__all__ = ['Weboob']
class Weboob(object):
WORKDIR = os.path.join(os.path.expanduser('~'), '.weboob')
BACKENDS_FILENAME = 'backends'