fix backends initialization

This commit is contained in:
Romain Bignon 2010-03-30 23:30:58 +02:00
commit 7d274c74b7
6 changed files with 4 additions and 15 deletions

View file

@ -25,8 +25,9 @@ class Backend:
VERSION = '<unspecified>'
LICENSE = '<unspecified>'
def __init__(self, weboob):
def __init__(self, weboob, config):
self.weboob = weboob
self.config = config
def has_caps(self, *caps):
for c in caps: