From f3114eaa306357303312c59f30a11ae3a1645acf Mon Sep 17 00:00:00 2001 From: Romain Bignon Date: Thu, 27 Dec 2018 15:15:14 +0100 Subject: [PATCH] Update of modules --- modules/creditdunord/browser.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/creditdunord/browser.py b/modules/creditdunord/browser.py index 740d1c7fb..f3d470bf5 100644 --- a/modules/creditdunord/browser.py +++ b/modules/creditdunord/browser.py @@ -51,8 +51,9 @@ class CreditDuNordBrowser(LoginBrowser): labels_page = URL("/icd/zco/public-data/ws-menu.json", LabelsPage) profile_page = URL("/icd/zco/data/user.json", ProfilePage) - def __init__(self, *args, **kwargs): + def __init__(self, website, *args, **kwargs): self.weboob = kwargs['weboob'] + self.BASEURL = "https://%s" % website super(CreditDuNordBrowser, self).__init__(*args, **kwargs) def is_logged(self): -- GitLab