when a backend is loaded twice, unload the previous one
This commit is contained in:
parent
ffd75dc2b5
commit
978f44c9df
1 changed files with 5 additions and 0 deletions
|
|
@ -100,6 +100,11 @@ class Weboob(object):
|
||||||
continue
|
continue
|
||||||
if caps is not None and not backend.has_caps(caps):
|
if caps is not None and not backend.has_caps(caps):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
if instance_name in self.backend_instances:
|
||||||
|
warning(u'Oops, the backend "%s" is already loaded. Unload it before reloading...' % instance_name)
|
||||||
|
self.unload_backends(instance_name)
|
||||||
|
|
||||||
backend_instance = backend.create_instance(self, instance_name, params, storage)
|
backend_instance = backend.create_instance(self, instance_name, params, storage)
|
||||||
self.backend_instances[instance_name] = loaded[instance_name] = backend_instance
|
self.backend_instances[instance_name] = loaded[instance_name] = backend_instance
|
||||||
return loaded
|
return loaded
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue