diff --git a/weboob/capabilities/bank.py b/weboob/capabilities/bank.py index df8803b3..7777c67e 100644 --- a/weboob/capabilities/bank.py +++ b/weboob/capabilities/bank.py @@ -56,7 +56,7 @@ class Currency: @classmethod def get_currency(klass, text): - text = re.sub(u'[^A-Za-z€]', '', text) + text = re.sub(u'[^A-Z€]', '', text.upper()) return klass.TXT2CUR.get(text, klass.CUR_UNKNOWN)