diff --git a/modules/popolemploi/browser.py b/modules/popolemploi/browser.py index 87e740ca..1722d234 100644 --- a/modules/popolemploi/browser.py +++ b/modules/popolemploi/browser.py @@ -27,11 +27,11 @@ __all__ = ['PopolemploiBrowser'] class PopolemploiBrowser(PagesBrowser): - BASEURL = 'http://candidat.pole-emploi.fr/' + BASEURL = 'https://candidat.pole-emploi.fr/' advert = URL('candidat/rechercheoffres/detail/(?P.*)', AdvertPage) search = URL('candidat/rechercheoffres/resultats/(?P.*?)', - 'http://offre.pole-emploi.fr/resultat\?offresPartenaires=true&libMetier=(?P.*?)', SearchPage) + 'https://offre.pole-emploi.fr/resultat\?offresPartenaires=true&libMetier=(?P.*?)', SearchPage) def search_job(self, pattern=None): return self.search.go(pattern=quote_plus(pattern)).iter_job_adverts()