fix login regexp
This commit is contained in:
parent
a7b0d274a0
commit
72c97ecc8b
1 changed files with 1 additions and 1 deletions
|
|
@ -37,7 +37,7 @@ class LCLBackend(BaseBackend, ICapBank):
|
|||
VERSION = '0.e'
|
||||
DESCRIPTION = u'Le Crédit Lyonnais French bank website'
|
||||
LICENSE = 'AGPLv3+'
|
||||
CONFIG = BackendConfig(ValueBackendPassword('login', label='Account ID', regexp='^\d{1,6}\w$', masked=False),
|
||||
CONFIG = BackendConfig(ValueBackendPassword('login', label='Account ID', regexp='^\d+\w$', masked=False),
|
||||
ValueBackendPassword('password', label='Password of account', regexp='^\d{6}$'),
|
||||
Value('agency', label='Agency code', regexp='^\d{3,4}$'))
|
||||
BROWSER = LCLBrowser
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue