diff --git a/modules/axabanque/pages/bank.py b/modules/axabanque/pages/bank.py index de94c2c0cf3db1b3f3aca96849dea2b989f33ecf..3d24a3a37dba4d252e3c5f46f4dd52c9c912d88e 100644 --- a/modules/axabanque/pages/bank.py +++ b/modules/axabanque/pages/bank.py @@ -269,7 +269,7 @@ def get_iban(self): # findall will find something like # ['FRXX', '1234', ... , '9012', 'FRXX', '1234', ... , '9012'] iban += part - iban = iban[:len(iban)/2] + iban = iban[:len(iban)//2] # we suppose that all iban are French iban iban_last_part = re.findall(r'([A-Z0-9]{3})\1\1Titulaire', extract_text(self.data), flags=re.MULTILINE)