fix loading of modules by names

This commit is contained in:
Romain Bignon 2010-04-20 09:24:47 +02:00
commit 9915edbaf7
2 changed files with 3 additions and 2 deletions

View file

@ -77,6 +77,7 @@ class Module:
return False
def create_backend(self, weboob, name, config, storage):
debug('Created backend "%s"' % name)
return self.klass(weboob, name, config, storage)
class BackendsConfig(object):