diff --git a/modules/cragr/browser.py b/modules/cragr/browser.py index 17808e27e28993558462c105680c85058ae8f221..48baf412e0f44003a2f305d064cb7d4438e2e8b6 100644 --- a/modules/cragr/browser.py +++ b/modules/cragr/browser.py @@ -715,7 +715,7 @@ def iter_investment(self, account): if ( account.type == Account.TYPE_LIFE_INSURANCE - and ('rothschild' in account.label.lower() or re.match(r'^open (perspective|strat)', account.label, re.I)) + and re.match(r'(rothschild)|(^patrimoine st honor)|(^open (perspective|strat))', account.label, re.I) ): # We must go to the right perimeter before trying to access the Life Insurance investments self.go_to_account_space(account._contract)