From eb4ca167ca2ce1f3cf6ea75f620cc0522648ee00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Philippe=20Dutr=C3=A8ve?= Date: Tue, 27 Aug 2013 10:46:51 +0200 Subject: [PATCH] Removed broken regexp for login parameter. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jean-Philippe Dutrève --- modules/carrefourbanque/backend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/carrefourbanque/backend.py b/modules/carrefourbanque/backend.py index cd73c0f0..1773e8a5 100644 --- a/modules/carrefourbanque/backend.py +++ b/modules/carrefourbanque/backend.py @@ -35,7 +35,7 @@ class CarrefourBanqueBackend(BaseBackend, ICapBank): VERSION = '0.h' DESCRIPTION = u'Carrefour Banque French bank website' LICENSE = 'AGPLv3+' - CONFIG = BackendConfig(ValueBackendPassword('login', label='Account ID', regexp='\d+', masked=False), + CONFIG = BackendConfig(ValueBackendPassword('login', label='Account ID', masked=False), ValueBackendPassword('password', label='Password', regexp='\d+')) BROWSER = CarrefourBanque