diff --git a/RAAspotter_pref13.py b/RAAspotter_pref13.py index c26f0f14e76d064c9cb576ce27efd5a170862d73..d8edba8a8cbb8a16fcccf4fcfc2c64f507c171ce 100644 --- a/RAAspotter_pref13.py +++ b/RAAspotter_pref13.py @@ -52,7 +52,7 @@ class RAAspotter_pref13(RAAspotter): url = unquote(url) name = a.find('span').previous_sibling.replace('Télécharger ', '').strip() date = datetime.datetime.strptime(a.find('span').get_text().split(' - ')[-1].strip(), '%d/%m/%Y') - filename = unquote(url.split('/')[-1]) + filename = url.split('/')[-1] raa = RAAspotter.RAA(url, date, name, filename) elements.append(raa)